Gestiono
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

FieldRequiredDescription
beneficiaryIdYesType: number
contactsYesType: arrayExample:
contacts[]YesType: object
contacts[].typeYesType: string
contacts[].dataTypeNoType: enumExample: string
contacts[].dataYesType: string

Default payloads

Path params

json
{}

Query

json
{}

Body

json
{
  "beneficiaryId": 1,
  "contacts": [
    {
      "type": "string",
      "data": "string"
    }
  ]
}

Sample response

json
{
  "contactIds": "<contactIds>"
}