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/programs \
--header 'X-API-Key: <api-key>'{
"data": [
{
"id": "<string>",
"organizationId": "<string>",
"name": "<string>",
"description": "<string>",
"code": "<string>",
"cipCode": "<string>",
"courses": [
{
"courseId": "<string>",
"courseName": "<string>",
"courseCode": "<string>",
"courseDefaultSectionId": "<string>",
"courseDisplayName": "<string>"
}
],
"courseOrder": [
"<string>"
],
"derivedSocs": [
"15-1252",
"15-1256"
],
"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 programs for the authenticated organization
curl --request GET \
--url https://api.mapademics.com/v1/programs \
--header 'X-API-Key: <api-key>'{
"data": [
{
"id": "<string>",
"organizationId": "<string>",
"name": "<string>",
"description": "<string>",
"code": "<string>",
"cipCode": "<string>",
"courses": [
{
"courseId": "<string>",
"courseName": "<string>",
"courseCode": "<string>",
"courseDefaultSectionId": "<string>",
"courseDisplayName": "<string>"
}
],
"courseOrder": [
"<string>"
],
"derivedSocs": [
"15-1252",
"15-1256"
],
"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?