Get Card
Returns one card by ID for Card Creator / service readers.
Note: Requires auth as admin or Cards service account (
getServiceReaderActor).
Request Example
Section titled “Request Example”curl --request GET \ --url 'https://lxp.prod.api.toolzz.media/cards/8708' \ --header 'Authorization: Bearer <token>'Response Example
Section titled “Response Example”{ "success": true, "card": { "id": 8708, "name": "Sample quiz", "ask": "What is 2+2?", "type": "quiz", "card_types_id": 1, "toolzz_institution_id": 39955387, "answers": [ { "id": 1, "answer": "4", "correct": true } ] }}If the card is missing or not accessible for the institution, card may be null.
Request description
Section titled “Request description”Path Parameters
Section titled “Path Parameters”| Parameter | Type | Description | Required |
|---|---|---|---|
id | number | Card ID. | Yes |
Access Token
Section titled “Access Token”| Parameter | Type | Description | Required |
|---|---|---|---|
Authorization | String | Admin or service JWT. | Yes |
Error responses
Section titled “Error responses”| HTTP | Code | When |
|---|---|---|
| 401 | unauthenticated | Missing/invalid JWT |
| 403 | permission_denied | Caller cannot read Cards as admin/service |
Security
Section titled “Security”- Institution-scoped; cards from other tenants are not returned.