Skip to main content

Get Systemic Tag Value By Uuid

Endpoint que recupera desde Index el tag sistémico que tiene como identificador el valor entregado en la variable de ruta tag_value_uuid.

Endpoint#

Headers

KeyValueDescription
AuthorizationBearer {{access_token}}access_token obtained in Atenea
Method: GET
URL: https://api.trust.lat/index/v1/systemic_tag_value/:tag_value_uuid

Path Variables:

KeyValue ExampleDescription
tag_value_uuidffffffff-ffff-ffff-ffff-ffffffffffffIdentificador único del tag sistemico. Obligatorio
caution

Recuerda que para utilizar este endpoint es necesario un access token obtenido en el servicio Atenea

Como obtener un access token

Code Examples#

curl --location --request GET 'https://api.trust.lat/index/v1/systemic_tag_value/ffffffff-ffff-ffff-ffff-ffffffffffff' \
--header 'Authorization: Bearer ************'

Responses#

HTTP Code: 200 OK#

Systemic Tag Value Found#

{
"code": 200,
"resource": "SystemicTagsValue",
"data": {
"color": "#0000FF",
"company_id": "99",
"created_at": "2021-07-08T21:38:42.800Z",
"description": "Empresa de fideos",
"name": "Lucchezzi",
"systemic_tag_name": "systemic_sub_company",
"updated_at": "2021-07-08T22:06:34.845Z",
"uuid": "ffffffff-ffff-ffff-ffff-ffffffffffff"
},
"message": "Found"
}

HTTP Code: 200 OK#

Systemic Tag Value not present in Index#

{
"code": 404,
"resource": "SystemicTagsValue",
"message": "Not found"
}
Last updated on by Jesus Marquez Barrera