This is a mock API. It is for demo and learning purposes. The server URL is powered by a Remockly mock server. You can send curl requests and use the try it console to interact with the mock API.
https://innovario.apishowdown.com/_mock/cicd-repo/openapi/
https://api.impossiblemissionsforce.com/
https://innovario.apishowdown.com/_mock/cicd-repo/openapi/checklists
https://api.impossiblemissionsforce.com/checklists
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"
}'
{ "id": "cklst_abc987def123", "name": "Onboarding Part 1", "items": [ "Sign agreements" ], "createdAt": "2023-02-19T09:31:27Z", "updatedAt": "2023-02-19T09:31:27Z" }
https://innovario.apishowdown.com/_mock/cicd-repo/openapi/checklists
https://api.impossiblemissionsforce.com/checklists
curl -i -X GET \
https://innovario.apishowdown.com/_mock/cicd-repo/openapi/checklists \
-H 'IMF-KEY: YOUR_API_KEY_HERE'
[ { "id": "cklst_abc987def123", "name": "Onboarding Part 1", "items": [ … ], "createdAt": "2023-02-19T09:31:27Z", "updatedAt": "2023-02-19T09:31:27Z" } ]