API v1 (1.0.0)ReferenceUsers

Remove a tag from a student

POST/usuario/remover_tag

Removes a tag from a student.

AuthorizationBearer <token>

The school API key, found in the dashboard settings, sent in the Authorization header. The Bearer prefix is optional.

In: header

Request Body

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

curl -X POST "https://example.com/usuario/remover_tag" \  -H "Content-Type: application/json" \  -d '{    "tag_id": 0,    "usuario_id": 0  }'
{  "code": 200,  "success": true}