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

  • 3ffcd4a80db712See the full diff
    • the additionalProperties/ response's property type/format changed from string/ to object/ for status 200

      response-property-type-changed

    • added the optional property additionalProperties/i18n to the response with the 200 status

      response-optional-property-added

    • added the optional property additionalProperties/title to the response with the 200 status

      response-optional-property-added