Create new extra field

POST /extra-fields
application/json

Body Required

  • column string

    Name of extra field column

    Values are dob, full_name, address, slots, business_name, business_address, business_id, tax_id, vat, identification_number, extra_field_1, extra_field_2, extra_field_3, extra_field_4, or extra_field_5.

  • value string

Responses

  • 200 application/json

    Null on false or stored extra field value

    Hide response attribute Show response attribute object
POST /extra-fields
curl \
 -X POST https://api.zooza.app/v1/extra-fields \
 -H "Content-Type: application/json" \
 -d '{"registration_id":42,"column":"dob","value":"string"}'
Request examples
{
  "registration_id": 42,
  "column": "dob",
  "value": "string"
}
Response examples (200)
{
  "value": "string"
}