placeholders
Get field structure
Get the structure of all available fields with their labels
get/api/v1.0/placeholders/
Response
object required
Field slugs mapped to their label metadata. Built-in fields have an empty object and are localized client-side. Custom attribute fields expose their schema title and optional per-language translations.
Example response
{
"name": {},
"recipient_name": {},
"job_title": {
"title": "Job title",
"i18n": {
"en": "Job title",
"fr": "Fonction"
}
}
}Changes
Changed in 1 of the 54 revisions of this API.12
- ▲
the
additionalProperties/response's property type/format changed fromstring/toobject/for status200response-property-type-changed
- ○
added the optional property
additionalProperties/i18nto the response with the200statusresponse-optional-property-added
- ○
added the optional property
additionalProperties/titleto the response with the200statusresponse-optional-property-added
- ▲