Backoffice API
  1. Metadata
Backoffice API
  • Back to home
  • Docs
  • ContentTypes
    • Paginated ContentTypes
      GET
    • Create ContentType
      POST
    • ContentType by id
      GET
    • Update ContentType by id
      PATCH
    • Remove ContentType by id
      DELETE
  • Templates
    • Paginated Templates
      GET
    • Create Template
      POST
    • Template by id
      GET
    • Update Template by id
      PATCH
    • Remove Template by id
      DELETE
  • Contents
    • Paginated Contents
      GET
    • Create Content
      POST
    • Content by id
      GET
    • Update Content by id
      PATCH
    • Delete Content by id
      DELETE
    • Restore soft deleted Content by id
      POST
    • Switch Content Template by id
      POST
  • Metadata
    • All Content Metadata
      GET
    • Update all Content Metadata
      PUT
  • Blocks
    • All blocks by Content id
      GET
    • Create Block in a Content Locale
      POST
    • Update Block by id
      PATCH
    • Remove Block by id
      DELETE
  1. Metadata

All Content Metadata

GET
/contents/{id}/metadata

Request

Authorization
API Key
Add parameter in header
x-api-key
Example:
x-api-key: ********************
or
API Key
Add parameter in query
x-api-key
Example:
x-api-key: ********************
or
Path Params

Responses

🟢200Success
application/json
Body

🟠400Invalid UUID
🟠401Unauthorized API KEY
🟠403Unauthorized roles
🟠404Entity not found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://prod.your-api-server.com/api/docs/v2/contents/{{docs_content_id}}/metadata' \
--header 'x-api-key: <api-key>'
Response Response Example
200 - Example 1
{
    "data": [
        {
            "key": "string",
            "value": "string"
        }
    ]
}
Modified at 2025-06-19 16:42:14
Previous
Switch Content Template by id
Next
Update all Content Metadata
Built with