List the access entries of a student
GET
/user/{identifier}/accessLists the access entries of a student: each sale, subscription or manual grant that gave access.
Authorization
apiKey AuthorizationBearer <token>
The school API key, found in the dashboard settings, sent in the Authorization header. The Bearer prefix is optional.
In: header
Path Parameters
identifier*string
The student: id:<ID>, email:<email> or doc:<document>. A plain value also works: a valid email is looked up by email, anything else by ID or document.
Response Body
application/json
application/json
application/json
curl -X GET "https://example.com/user/string/access"{ "code": 200, "message": "string", "profiler": [], "success": true, "version": 2, "data": { "entries": [ { "active": true, "created_at": { "iso": "2019-08-24T14:15:22Z", "unix": "string" }, "delivery_id": 0, "id": 0, "recurrence_id": "string", "transaction_id": "string" } ] }}