Get a list of all assignments inside a course product. Returns assignment ID and title for each.
Authentication with the “FERMION-API-KEY” header is required to use this endpoint.
Rate limit: Maximum 60 requests in a window of 1m.
cURL
curl --request POST \ --url https://backend.codedamn.com/api/public/list-assignments \ --header 'Content-Type: application/json' \ --header 'FERMION-API-KEY: <api-key>' \ --data ' { "data": [ { "data": { "courseIdentifier": { "type": "product-id", "digitalProductId": "<string>" } } } ] } '
[ { "output": { "status": "ok", "data": { "productId": "<string>", "productTitle": "<string>", "assignments": [ { "assignmentId": "<string>", "assignmentTitle": "<string>" } ] } } } ]
API Request Body
Show child attributes
API Response Body