check

This API retrieves all user templates and the template_id that would be used when creating a new user. This API also returns the users assigned to the various templates that are created.

See Parameters and Authentication below.

Sample Request

[
    {
        "template_id": 30134,//this is the value used to pass through when creating a new user
        "template_name": "Manager",
        "template_users": [//this array that is passed through shows all users using a template
            {
                "id": 1748121,
                "name": "Apollo Panda"
            }
        ]
    },
    {
        "template_id": 30135,
        "template_name": "Basic",
        "template_users": []
    },
    {
        "template_id": 30136,
        "template_name": "Admin",
        "template_users": []
    }
]
Language
Click Try It! to start a request and see the response here!