Alterar Marcador
PUT
https://api.eduzz.com/blinket/v1/attendance-tags/:id
Required scopes:blinket_write
Altera um marcador existente
Path params
id
Id do marcador
Body params
title
string
Novo título do marcador
color
string
Nova cor do marcador em hexadecimal
Response params (200)
id
string
Id do marcador alterado
title
string
Título
color
string
Cor
createdAt
datetime
Data de criação do marcador
modifiedAt
datetime
Data da última modificação do marcador
Status codes
Status | Descrição |
200 | Success |
403 | Missing scope in request headers |
422 | Validation failed |
Exemplos
1curl --request PUT \
2 --url https://api.eduzz.com/blinket/v1/attendance-tags/9c00934c-67e6-44d0-b308-7d875dd5a908 \
3 --header 'Accept: application/json' \
4 --header 'Content-Type: application/json' \
5 --header 'authorization: Bearer {{YOUR_ACCESS_TOKEN}}'\
6 --data '
7{
8 "title": "New Title",
9 "color": "#00FF00"
10}
11'
Response
1{
2 "id": "795ad3b7-6dc6-4f7b-8418-c2e496f99481",
3 "title": "ABC",
4 "color": "#FF0000",
5 "createdAt": "2021-06-07T16:03:01Z",
6 "modifiedAt": "2021-06-07T16:03:01Z"
7}