Skip to main content

Delete Systemic Tag Value

Este endpoint permite eliminar una tag sistémico del servicio Index, utilizando su identificador tag_value_uuid para encontrarlo.

Endpoint#

Headers

KeyValueDescription
AuthorizationBearer {{access_token}}access_token obtained in Atenea
Method: DELETE
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 DELETE 'https://api.trust.lat/index/v1/systemic_tag_value/ffffffff-ffff-ffff-ffff-ffffffffffff' \
--header 'Authorization: Bearer ************' \
--data-raw ''

Responses#

HTTP Code: 200 OK#

Systemic Tag Value deleted#

{
"code": 200,
"resource": "SystemicTagsValue",
"data": "ffffffff-ffff-ffff-ffff-ffffffffffff",
"message": "Deleted"
}

HTTP Code: 404 Not Found#

Systemic Tag Value not present in Index Service#

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