Backoffice API
  1. Categories
Backoffice API
  • Back to home
  • Core
  • Assets
    • Images
      • Create Asset Image
      • Asset Image by id
      • Asset Image by key
      • Asset Image by hash
      • Delete Asset Image by id
      • Restore soft deleted Asset image by id
  • Categories
    • Paginated Categories
      GET
    • Create Category
      POST
    • Category by id
      GET
    • Update Category by id
      PATCH
    • Delete Category by id
      DELETE
    • Restore soft deleted Category by id
      POST
  • References
    • Create Reference
      POST
    • Reference by ref
      GET
    • Remove Reference by ref
      DELETE
  1. Categories

Category by id

GET
/categories/{id}

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/core/v2/categories/{{core_category_id}}' \
--header 'x-api-key: <api-key>'
Response Response Example
200 - Example 1
{
    "data": {
        "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
        "locales": [
            {
                "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
                "locale": "en",
                "name": "string",
                "deleted_at": "string"
            }
        ],
        "svg_icon": "string",
        "is_archived": false,
        "inserted_at": "2019-08-24T14:15:22Z",
        "updated_at": "2019-08-24T14:15:22Z",
        "deleted_at": "string"
    }
}
Modified at 2025-06-19 16:41:12
Previous
Create Category
Next
Update Category by id
Built with