Update collateral. Money is in whole cents and bpsAdvanceRate is in basis points (8500 = 85%).
Security
ApiKeyAuth
Market value in whole cents. 12345600 = $123,456.00
Advance rate in basis points, 0–10000 (8500 = 85%). Not inferred — supply it to drive net-collateral/LTV.
Manually-entered prior lien in whole cents (used in net-collateral/LTV).
- https://api.pioneerft.com/apihttps://api.pioneerft.com/api/public/v1/loans/{loanId}/collateral/{id}
- https://api.staging.pioneerft.com/apihttps://api.staging.pioneerft.com/api/public/v1/loans/{loanId}/collateral/{id}
curl -i -X PATCH \
'https://api.pioneerft.com/api/public/v1/loans/{loanId}/collateral/{id}' \
-H 'Authorization: Bearer <YOUR_API Key_HERE>' \
-H 'Content-Type: application/json' \
-H 'Idempotency-Key: string' \
-d '{
"description": "string",
"category": "string",
"centsMarketValue": 0,
"bpsAdvanceRate": 0,
"centsManualPriorLien": 0,
"ownerType": "person",
"ownerId": "string"
}'Response
{ "data": { "id": "string", "loanId": "string", "description": "string", "category": "string", "centsMarketValue": -9007199254740991, "bpsAdvanceRate": -9007199254740991, "centsPriorLienAmount": -9007199254740991, "centsManualPriorLien": -9007199254740991, "ownerType": "string", "ownerId": "string" } }