GET/trusted-issuers-registry/v5/issuers/:did/proxies
Returns a list of proxies of a trusted issuer.
Request
Path Parameters
- did
Description: Valid Conformance DID
Example: did:ebsi:zjHZjJ4Sy7r92BxXzFGs7qD
Responses
- 200
- 400
- 404
- 500
Success
- application/json
- Schema
- Success
Schema
- Array [
- ]
items object[]
List of proxies
Proxy ID. (hash, sha256)
Link to the resource
Total number of items in a collection
{
"items": [
{
"proxyId": "0x0090e5904a806f9228f88a502e4788d512288c9ba22106f16b5ae7b279ae3598",
"href": "https://api-conformance.ebsi.eu/trusted-issuers-registry/v5/issuers/did:ebsi:zjHZjJ4Sy7r92BxXzFGs7qD/proxies/0x0090e5904a806f9228f88a502e4788d512288c9ba22106f16b5ae7b279ae3598"
}
],
"total": 1
}
Bad Request Error
- application/problem+json
- Schema
- Invalid {did} Parameter
Schema
Default value: about:blank
An absolute URI that identifies the problem type. When dereferenced, it SHOULD provide human-readable documentation for the problem type.
A short summary of the problem type.
Possible values: >= 400
and <= 600
The HTTP status code generated by the origin server for this occurrence of the problem.
A human readable explanation specific to this occurrence of the problem.
An absolute URI that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.
{
"title": "Bad Request",
"status": 400,
"detail": "The format of {did} parameter is not valid"
}
Not found
- application/problem+json
- Schema
- DID Not Found
Schema
Default value: about:blank
An absolute URI that identifies the problem type. When dereferenced, it SHOULD provide human-readable documentation for the problem type.
A short summary of the problem type.
Possible values: >= 400
and <= 600
The HTTP status code generated by the origin server for this occurrence of the problem.
A human readable explanation specific to this occurrence of the problem.
An absolute URI that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.
{
"title": "Not found",
"status": 404,
"detail": "Not found"
}
Internal Server Error
- application/problem+json
- Schema
- Internal Server Error
Schema
Default value: about:blank
An absolute URI that identifies the problem type. When dereferenced, it SHOULD provide human-readable documentation for the problem type.
A short summary of the problem type.
Possible values: >= 400
and <= 600
The HTTP status code generated by the origin server for this occurrence of the problem.
A human readable explanation specific to this occurrence of the problem.
An absolute URI that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.
{
"title": "Internal error",
"status": 500,
"detail": "Internal error"
}