Submissions
Once the appraiser completes the appraisal documents, they can be submitted to CXP.
PUT/api/v1/orders/{order_id}/request_submission
Request submission
This endpoint allows you to submit one or more appraisal documents files to the order.
URL attributes
- Name
order_id- Type
- string required
- Description
The order id.
Form attributes
- Name
files- Type
- array
- Description
Array of files to be submitted.
Show child attributes
Request
PUT
/api/v1/orders/{order_id}/request_submissioncurl --location --request PUT 'https://app.collateralxp.com/api/v1/orders/d54008ce-90e5-4012-8a10-4fcbc786ae5f/request_submission' \
--header 'X-API-KEY: {api_key}' \
--form 'files[][attachment]=@"/1004.xml"' \
--form 'files[][file_type]="appraisal_xml"' \
--form 'files[][product_id]="d08fd0e8-fd05-4ae2-9aea-6340637ff525"' \
Response
{
"success": true
}