Authorizations
API key for authentication
Query Parameters
Number of items to return
Required range:
x <= 100Number of items to skip
curl --request GET \
--url https://api.mapademics.com/v1/credentials \
--header 'X-API-Key: <api-key>'{
"data": [
{
"id": "<string>",
"organizationId": "<string>",
"name": "<string>",
"description": "<string>",
"code": "<string>",
"sections": [
{
"courseId": "<string>",
"courseName": "<string>",
"courseCode": "<string>",
"courseDefaultSectionId": "<string>",
"courseDisplayName": "<string>",
"sectionId": "<string>",
"sectionName": "<string>",
"sectionInstructorName": "<string>",
"sectionSkills": [
{
"skillId": "<string>",
"skillName": "<string>",
"level": 3,
"confidence": 0.5
}
]
}
],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"deletedAt": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"total": 123,
"limit": 123,
"offset": 123,
"hasMore": true
}
}List all stackable credentials for the authenticated organization
curl --request GET \
--url https://api.mapademics.com/v1/credentials \
--header 'X-API-Key: <api-key>'{
"data": [
{
"id": "<string>",
"organizationId": "<string>",
"name": "<string>",
"description": "<string>",
"code": "<string>",
"sections": [
{
"courseId": "<string>",
"courseName": "<string>",
"courseCode": "<string>",
"courseDefaultSectionId": "<string>",
"courseDisplayName": "<string>",
"sectionId": "<string>",
"sectionName": "<string>",
"sectionInstructorName": "<string>",
"sectionSkills": [
{
"skillId": "<string>",
"skillName": "<string>",
"level": 3,
"confidence": 0.5
}
]
}
],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"deletedAt": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"total": 123,
"limit": 123,
"offset": 123,
"hasMore": true
}
}API key for authentication
Number of items to return
x <= 100Number of items to skip
Was this page helpful?