Comment on page
Get Claim by ID
get
/api/v1/{entity-name}/claims/{claimId}
Parameters
Path
entity-name*
Name of the entity to which attestation request was sent
claimId*
ID of the claim to be returned
Header
content-type*
Set to
application/json
authorization
Set to
Bearer {access-token}
if roles
in schema config is not anonymous else this can be emptyResponses
200: OK
curl --location --request GET '{registry-url}/api/v1/{entity-name}/claims/{claimId}' \
--header 'Authorization: Bearer {access-token}'
http GET '{registry-url}/api/v1/{entity-name}/claims/{claimId}' \
Authorization:'Bearer {access-token}'
{registry-url}
is usually http://localhost:{port}. The port can be found under the registry
section in the docker-compose.yml
file and is usually 8081
Last modified 1yr ago