Comment on page
Get Attestation Certificate
get
/api/v1/{entity-type}/{entity-id}/attestation/{attestation-name}/{attestation-id}
Retrieve Attestation Certificate
Parameters
Path
entity-name*
Name of Entity for which attestation was raised
entity-id*
ID of entity for which attestation was raised
attestation-name*
Name of attestation for that entity-type
attestation-id*
ID of the attestation for that record of entity
Header
accept*
Set to
application/pdf, application/json, text/html, image/svg+xml
template
if
enable_external_templates
is set to true, send in a url which has html templatetemplate-key
A key pointing to html template which is present in
Schema
access-token
Set to
Bearer {access-token}
if roles in schema is not anonymous. Else authorization can be emptyResponses
200: OK
Successful retrieval of certification
curl --location --request GET '{registry-url}/api/v1/{entity-type}/{entity-id}/attestation/{attestation-name}/{attestation-id}' \
--header 'Accept: application/pdf' \
--header 'template: {url}' \
--header 'Authorization: Bearer {access-token}'
http GET '{registry-url}/api/v1/{entity-type}/{entity-id}/attestation/{attestation-name}/{attestation-id}' \
Accept:'application/pdf' \
template:'{url}' \
Authorization:'Bearer {access-token}'
{registry-url}
is usually http://localhost:{port}. The port can be found under theregistry
section in thedocker-compose.yml
file and is usually8081
Last modified 1yr ago