cURL
curl --request PATCH \ --url https://api.mapademics.com/v1/courses/{courseId} \ --header 'Content-Type: application/json' \ --header 'X-API-Key: <api-key>' \ --data ' { "name": "<string>", "code": "<string>", "description": "<string>" } '
{ "id": "<string>", "organizationId": "<string>", "name": "<string>", "code": "<string>", "sections": [ { "id": "<string>", "name": "<string>", "description": "<string>" } ], "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z", "description": "<string>", "defaultSectionId": "<string>", "deletedAt": "2023-11-07T05:31:56Z" }
Updates only the course metadata, not its sections
API key for authentication
Unique identifier for the course
Course name
Course code
Course description
Course updated successfully
Array of section references
Show child attributes
Was this page helpful?