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/assignments
https://api.impossiblemissionsforce.com/assignments
curl -i -X POST \
https://innovario.apishowdown.com/_mock/cicd-repo/openapi/assignments \
-H 'Content-Type: application/json' \
-H 'IMF-KEY: YOUR_API_KEY_HERE' \
-d '{
"user": "abc123",
"type": "quiz",
"name": "Who we are",
"maxAttempts": 3,
"deadline": "2023-02-25T00:00:00Z"
}'
{ "id": "asmt_atskthask23498uas2", "user": "abc123", "type": "quiz", "name": "Who we are", "maxAttempts": 3, "status": "done", "assignedAt": "2023-02-19T10:56:21Z", "deadline": "2023-02-25T00:00:00Z", "completedAt": "2023-02-19T14:52:21Z", "progress": 1, "data": {} }
https://innovario.apishowdown.com/_mock/cicd-repo/openapi/assignments
https://api.impossiblemissionsforce.com/assignments
curl -i -X GET \
https://innovario.apishowdown.com/_mock/cicd-repo/openapi/assignments \
-H 'IMF-KEY: YOUR_API_KEY_HERE'
[ { "id": "asmt_atskthask23498uas2", "user": "abc123", "type": "quiz", "name": "Who we are", "maxAttempts": 3, "status": "done", "assignedAt": "2023-02-19T10:56:21Z", "deadline": "2023-02-25T00:00:00Z", "completedAt": "2023-02-19T14:52:21Z", "progress": 1, "data": {} } ]