POST
/
verify
curl --request POST \
  --url https://lab.trustos.telefonicatech.com/id/v2/verify \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "method": "POST",
  "endpoint": "/certificates"
}'
{
  "statusCode": 200,
  "message": "Token verified sucessfully",
  "data": "Valid token"
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Data needed for verifying authN and authZ.

The body is of type object.

Response

200
application/json

Successful token verification.

The response is of type object.