Skip to main content
POST
/
v1
/
tags
/
scan
Scan a tag by its tag_id string
curl --request POST \
  --url http://0.0.0.0:3000/v1/tags/scan \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "tag_id": "TAG-ABC123"
}
'
{
  "message": "Tag scanned"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
tag_id
string
required

Identificador único da tag a escanear

Response

Tag scanned successfully

message
string