Create a person and attach them to the loan with the given role. Accepts a full SSN; only the last 4 digits are ever returned.
Security
ApiKeyAuth
Entity-in-loan role name, e.g. "borrower" or "guarantor" (resolved server-side; unknown names return 400). See the roles echoed by GET /loans/:id/entities.
- https://api.pioneerft.com/apihttps://api.pioneerft.com/api/public/v1/loans/{id}/people
- https://api.staging.pioneerft.com/apihttps://api.staging.pioneerft.com/api/public/v1/loans/{id}/people
curl -i -X POST \
'https://api.pioneerft.com/api/public/v1/loans/{id}/people' \
-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",
"role": "string"
}'Response
{ "data": { "id": "string", "firstName": "string", "lastName": "string", "ssnLast4": "string", "role": "string", "ownershipPercent": 0 } }