GET ALL

Query all template categories that are associated with the given partner API key

QUERY ALL

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

Query template categories

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

Response

{
    "categories": [
        {
            "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.

Objects

pageTEMPLATE

Last updated