Update extra field

PUT /extra-fields/{Registration_ID}
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

    Success

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