Skip to content

Checklists

Endpoints for managing checklists, which are lists of tasks or objectives learners must complete. These APIs enable you to create, update, retrieve, and delete checklists, as well as manage checklist items.

Create checklist

Request

Security
imfKey
Bodyapplication/json
namestring
itemsArray of strings
createdAtstring, (date-time)
updatedAtstring, (date-time)
curl -i -X POST \
  https://innovario.apishowdown.com/_mock/cicd-repo/openapi/checklists \
  -H 'Content-Type: application/json' \
  -H 'IMF-KEY: YOUR_API_KEY_HERE' \
  -d '{
    "name": "Onboarding Part 1",
    "items": [
      "Sign agreements"
    ],
    "createdAt": "2023-02-19T09:31:27Z",
    "updatedAt": "2023-02-19T09:31:27Z"
  }'

Responses

Created.

Bodyapplication/json
idstringread-only
namestring
itemsArray of strings
createdAtstring, (date-time)
updatedAtstring, (date-time)
Response
{ "id": "cklst_abc987def123", "name": "Onboarding Part 1", "items": [ "Sign agreements" ], "createdAt": "2023-02-19T09:31:27Z", "updatedAt": "2023-02-19T09:31:27Z" }