GET/did-registry/v3/identifiers/:did/versions/:versionId/metadata
Returns a list of DID document metadata.
Request
Path Parameters
- DID
- Version ID
A DID to be resolved.
Example: did:ebsi:zbM8cCuoBMFNLeQyLiVFyxw
A unique version ID.
Example: 0xa009395f9e2a7809f1b550e0efbe2443dce931fe747d269a5c312e5ad75f88e1
Query Parameters
Cursor that points to the end of the page of data that has been returned.
Defines the maximum number of objects that may be returned.
Responses
- 200
- 400
- 404
- 500
Success
- application/json
- Schema
- Example (from schema)
- Success
Schema
- Array [
- ]
Absolute path to the collection (consult)
items object[]
List of DID document versions
A unique metadata id.
Link to the resource.
Total number of items across all pages.
Maximum number of items per page. For the last page, its value should be independent of the number of actually returned items.
links object
Links model used for pagination
URI of the last page
URI of the previous page
URI of the next page
URI of the first page
{
"self": "string",
"items": [
{
"metadataId": "string",
"href": "string"
}
],
"total": 0,
"pageSize": 0,
"links": {
"last": "string",
"prev": "string",
"next": "string",
"first": "string"
}
}
{
"self": "https://api-pilot.ebsi.eu/did-registry/v3/identifiers/did:ebsi:z25F87e2MyLKF7DViuHi5b4z/versions/0x43f83ef52855e76833f7cf2552d1bee82f8de198e718a1da8a45df1a1616fe8c/metadata?page[after]=1&page[size]=10",
"items": [
{
"metadataId": "0x43f83ef52855e76833f7cf2552d1bee82f8de198e718a1da8a45df1a1616fe8c",
"href": "https://api-pilot.ebsi.eu/did-registry/v3/identifiers/did:ebsi:z25F87e2MyLKF7DViuHi5b4z/versions/0x43f83ef52855e76833f7cf2552d1bee82f8de198e718a1da8a45df1a1616fe8c/metadata/0x43f83ef52855e76833f7cf2552d1bee82f8de198e718a1da8a45df1a1616fe8c"
}
],
"total": 1,
"pageSize": 10,
"links": {
"first": "https://api-pilot.ebsi.eu/did-registry/v3/identifiers/did:ebsi:z25F87e2MyLKF7DViuHi5b4z/versions/0x43f83ef52855e76833f7cf2552d1bee82f8de198e718a1da8a45df1a1616fe8c/metadata?page[after]=1&page[size]=10",
"prev": "https://api-pilot.ebsi.eu/did-registry/v3/identifiers/did:ebsi:z25F87e2MyLKF7DViuHi5b4z/versions/0x43f83ef52855e76833f7cf2552d1bee82f8de198e718a1da8a45df1a1616fe8c/metadata?page[after]=1&page[size]=10",
"next": "https://api-pilot.ebsi.eu/did-registry/v3/identifiers/did:ebsi:z25F87e2MyLKF7DViuHi5b4z/versions/0x43f83ef52855e76833f7cf2552d1bee82f8de198e718a1da8a45df1a1616fe8c/metadata?page[after]=1&page[size]=10",
"last": "https://api-pilot.ebsi.eu/did-registry/v3/identifiers/did:ebsi:z25F87e2MyLKF7DViuHi5b4z/versions/0x43f83ef52855e76833f7cf2552d1bee82f8de198e718a1da8a45df1a1616fe8c/metadata?page[after]=1&page[size]=10"
}
}
Bad Request Error
- application/problem+json
- Schema
- Example (from schema)
- Bad Paging Request
- Invalid {did} Parameter
- Invalid {versionId} 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.
{
"type": "about:blank",
"title": "Internal Server Error",
"status": 500,
"detail": "Connection timeout",
"instance": "string"
}
{
"title": "Bad Paging Request",
"status": 400,
"detail": "PageSize should not be greater than 50"
}
{
"title": "Bad Request",
"status": 400,
"detail": "The format of {did} parameter is not valid"
}
{
"title": "Bad Request",
"status": 400,
"detail": "The format of {versionId} parameter is not valid"
}
Not found
- application/problem+json
- Schema
- Example (from schema)
- DID Not Found
- Version ID 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.
{
"type": "about:blank",
"title": "Internal Server Error",
"status": 500,
"detail": "Connection timeout",
"instance": "string"
}
{
"title": "Not found",
"status": 404,
"detail": "Not found"
}
{
"title": "Not found",
"status": 404,
"detail": "Not found"
}
Internal Server Error
- application/problem+json
- Schema
- Example (from 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.
{
"type": "about:blank",
"title": "Internal Server Error",
"status": 500,
"detail": "Connection timeout",
"instance": "string"
}
{
"title": "Internal error",
"status": 500,
"detail": "Internal error"
}