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