Listing all checklists

This method return a full list of all checklists along with their associated questions/items.

URL

/api/v2/checklists/all

Access

This method can be accessed by all API users.

Supported Parameters

This method does not accept any parameters.

Example JSON

[
    {
        "id": 1,
        "name": "My Check List",
        "in_order": true,
        "items": [
            {
                "id": 1,
                "position": 1,
                "name": "Question #1",
                "text": "La la la"
            },
            {
                "id": 2,
                "position": 2,
                "name": "Question #2",
                "text": "Pa pa pa pa pa!"
            },
            {
                "id": 3,
                "position": 3,
                "name": "Question #3",
                "text": "Blah blah blah blah"
            }
        ]
    }
]

Proudly powered by Katapult. Running on 100% renewable energy.