Get a paginated list of students enrolled in a digital product
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/get-product-enrolled-students \ --header 'Content-Type: application/json' \ --header 'FERMION-API-KEY: <api-key>' \ --data ' { "data": [ { "data": { "fermionDigitalProductId": "<string>", "pageNumber": 2, "limit": 52 } } ] } '
[ { "output": { "status": "ok", "data": { "productStatus": "Active", "totalEnrollments": 123, "enrollments": [ { "fermionUserId": "<string>", "enrollmentUniqueId": "<string>", "createdAt": "2023-11-07T05:31:56Z", "userName": "<string>", "enrollmentStatus": "Enrolled", "userProfilePicture": "<string>", "email": "jsmith@example.com", "accountStatus": "Active" } ] } } } ]
API Request Body
Show child attributes
API Response Body