Update the details of a business associated with a loan. Only the fields provided in the request body are changed.
Security
ApiKeyAuth
- https://api.pioneerft.com/apihttps://api.pioneerft.com/api/public/v1/loans/{loanId}/businesses/{id}
- https://api.staging.pioneerft.com/apihttps://api.staging.pioneerft.com/api/public/v1/loans/{loanId}/businesses/{id}
curl -i -X PATCH \
'https://api.pioneerft.com/api/public/v1/loans/{loanId}/businesses/{id}' \
-H 'Authorization: Bearer <YOUR_API Key_HERE>' \
-H 'Content-Type: application/json' \
-H 'Idempotency-Key: string' \
-d '{
"name": "string",
"ein": "string",
"dba": "string",
"entityType": "C-Corp",
"state": "string",
"naics": "string"
}'Response
{ "data": { "id": "string", "name": "string", "dba": "string", "entityType": "string", "einLast4": "string", "state": "string", "naics": "string", "role": "string" } }