Skip to main content
GET
/
publisher
/
{publisher_id}
/
entities
/
content-type
/
{custom_entity_schema_id}
Retrieve Custom Content Type
curl --request GET \
  --url https://cms.thepublive.com/publisher/{publisher_id}/entities/content-type/{custom_entity_schema_id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "id": "sch_abc123",
  "type": "Collection",
  "name": "Movies",
  "api_slug": "movie",
  "api_collections_slug": "movies",
  "response_type": "json",
  "field_types": [
    {
      "name": "name",
      "type": "short_text",
      "validations": { "required": {}, "group_editable": true },
      "meta_data": {
        "type": { "value": "input" },
        "label": { "value": "name" },
        "placeholder": { "value": "" },
        "default": { "value": null },
        "tooltip": { "value": "" }
      }
    },
    {
      "name": "link",
      "type": "url",
      "validations": { "required": {}, "group_editable": true },
      "meta_data": {
        "type": { "value": "input" },
        "label": { "value": "link" },
        "placeholder": { "value": "" },
        "default": { "value": null },
        "tooltip": { "value": "" }
      }
    }
  ],
  "groups": [],
  "components": [],
  "settings": {
    "entry_title": "name",
    "searchable_fields": [],
    "filter_fields": [],
    "allowed_states": ["Published", "Draft", "Scheduled", "Approval Pending"],
    "access_control": {},
    "enable_component_preview": false,
    "enable_content_rule": false,
    "enable_custom_date": false,
    "enable_seo_properties": false,
    "enable_code_ingestion": false
  },
  "global_system_default": false
}
Returns the details of a specific custom content type schema.
publisher_id
string
required
Your Publisher ID
custom_entity_schema_id
string
required
Custom content type schema ID
{
  "id": "sch_abc123",
  "type": "Collection",
  "name": "Movies",
  "api_slug": "movie",
  "api_collections_slug": "movies",
  "response_type": "json",
  "field_types": [
    {
      "name": "name",
      "type": "short_text",
      "validations": { "required": {}, "group_editable": true },
      "meta_data": {
        "type": { "value": "input" },
        "label": { "value": "name" },
        "placeholder": { "value": "" },
        "default": { "value": null },
        "tooltip": { "value": "" }
      }
    },
    {
      "name": "link",
      "type": "url",
      "validations": { "required": {}, "group_editable": true },
      "meta_data": {
        "type": { "value": "input" },
        "label": { "value": "link" },
        "placeholder": { "value": "" },
        "default": { "value": null },
        "tooltip": { "value": "" }
      }
    }
  ],
  "groups": [],
  "components": [],
  "settings": {
    "entry_title": "name",
    "searchable_fields": [],
    "filter_fields": [],
    "allowed_states": ["Published", "Draft", "Scheduled", "Approval Pending"],
    "access_control": {},
    "enable_component_preview": false,
    "enable_content_rule": false,
    "enable_custom_date": false,
    "enable_seo_properties": false,
    "enable_code_ingestion": false
  },
  "global_system_default": false
}
Last modified on April 23, 2026