Referencia de APIAccounting / Beneficiary
Create Beneficiary contact
← Back to full API reference
POST
/v1/beneficiary/contactAuth required- Validated by Zod schema: postContact.
Request details
Body fields
| Field | Required | Description |
|---|---|---|
| beneficiaryId | Yes | Type: number |
| type | Yes | Type: string |
| dataType | No | Type: enumExample: string |
| data | Yes | Type: string |
Default payloads
Path params
json
{}Query
json
{}Body
json
{
"beneficiaryId": 1,
"type": "string",
"data": "string"
}Sample response
json
{
"contactId": "<contactId>"
}