Add a tag to a student

POST/usuario/adicionar_tag

Adds a tag to a student. When the student already has the tag, returns the existing link.

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/adicionar_tag" \  -H "Content-Type: application/json" \  -d '{    "tag_id": 0,    "usuario_id": 0  }'
{  "code": 200,  "success": true,  "data": {    "created_at": "2019-08-24T14:15:22Z",    "id": 0,    "tag_id": 0,    "updated_at": "2019-08-24T14:15:22Z",    "usuario_id": 0  }}