Update the details of a person 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}/people/{id}
- https://api.staging.pioneerft.com/apihttps://api.staging.pioneerft.com/api/public/v1/loans/{loanId}/people/{id}
curl -i -X PATCH \
'https://api.pioneerft.com/api/public/v1/loans/{loanId}/people/{id}' \
-H 'Authorization: Bearer <YOUR_API Key_HERE>' \
-H 'Content-Type: application/json' \
-H 'Idempotency-Key: string' \
-d '{
"firstName": "string",
"lastName": "string",
"ssn": "string",
"email": "user@example.com",
"dob": "string"
}'Response
{ "data": { "id": "string", "firstName": "string", "lastName": "string", "ssnLast4": "string", "role": "string", "ownershipPercent": 0 } }