Contact custom fields
Manage custom fields for contacts programmatically.
The Contact Custom Fields API allows you to create, manage, and delete custom data attributes for your contacts within a specific service. You can use these endpoints to retrieve lists of existing custom fields, define new fields with specific display names and predefined options, update existing field configurations, and remove custom fields when they are no longer needed.
Base URL — https://api.concierge.me/v1
| Endpoint | Usage | Method |
|---|---|---|
| /services/{service_id}/contact-custom-fields | Returns a list of contact custom fields belonging to the specified service | GET |
| /services/{service_id}/contact-custom-fields | Creates a contact custom field | POST |
| /services/{service_id}/contact-custom-fields/{contact_custom_field_id} | Returns a single contact custom field | GET |
| /services/{service_id}/contact-custom-fields/{contact_custom_field_id} | Updates a contact custom field and returns the updated object | PUT |
| /services/{service_id}/contact-custom-fields/{contact_custom_field_id} | Deletes a contact custom field | DELETE |
