GET

Query a template category by categoryId

QUERY

GET https://api.eyelevel.ai/v1/partner/template/categories/:categoryId

Query template categories

Path Parameters

{
    "category": {
        "categoryId":  INTEGER IDENTIFIER,
        "description": "STRING",
        "group":       "STRING",
        "templates": [
            { TEMPLATE OBJECT }
        ]
    }
}

Response

{
    "category": {
        "categoryId":  INTEGER IDENTIFIER,
        "description": "STRING",
        "name":        "STRING",
        "templates": [
            { TEMPLATE OBJECT }
        ]
    }
}

categoryId

The unique integer identifier for the category. You can use this categoryId in other template API requests.

description

The human readable description of the category.

name

The human readable name for the category.

templates

An array of TEMPLATE objects, containing information about the templates in the category. The definition of templates are described in greater detail here.

Last updated