Results tagging
Add tags to the Results (or Transaction). You can create own tags for any reasons.
Authorization
This endpoint requires a API token as Bearer in the Authorization header. Go to Authorization guide for details.
Request (PUT)
PUT https://api.biometrysolutions.com/api-transactions/transactions/{transaction_id}/tags
Headers
- Authorization* - Your API Token.
Parameters
- tags* (string array) - Set of tags that you want to add to your transaction.
Responses
The object with data
field.
data
- Contains the message about the tahs status.
Response sample:
{ "message": "string"}
Bad Request error object.
Response sample:
{ "message": "string"}
Internal server error object.
Response sample:
{ "message": "string"}
Sample
Request
curl --location 'https://api.biometrysolutions.com/api-transactions/transactions/29dc0438-...-f82af1c42843/tags' \ --header 'Authorization: Bearer eyJhbGciO...ANYea8r2xOG-Urc' \ --data '{ "tags": ["fraud", "possibly_fraud"] }'
Response
{ "message": "tags updated"}