GET/did-registry/v3/did-timestamps/:timestampId
Gets a DID Timestamp based on its ID.
Request
Path Parameters
- Timestamp ID
Example: uGiaHOVFw-Zzg-OCeDAwLn30xnqHrPHgd_wdhusk0xo4
Responses
- 200
- 400
- 404
- 500
Success
- application/json
- Schema
- Example (from schema)
- Success
Schema
Multihash encoded in multibase base64
Address of the transaction signer that timestamped the information.
Number of the block in which the hash has been timestamped.
Additional timestamp data.
DID Timestamp
{
"hash": "string",
"timestampedBy": "string",
"blockNumber": 0,
"data": "string"
}
{
"hash": "mEiD/Gq2wzGn9aN0XOJT2SHJ7ZjrLMgcwEEm7dhns8Yd2Lg",
"timestampedBy": "0x9139869907de5bA6Cd38AB08e84c72188bce25c0",
"blockNumber": 1577582,
"data": "0x7b2264617461223a2274657374227d"
}
Bad Request
- application/problem+json
- Schema
- Example (from schema)
- Invalid {name} 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 Request",
"status": 400,
"detail": "The format of {name} parameter is not valid"
}
Not found
- application/problem+json
- Schema
- Example (from 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.
{
"type": "about:blank",
"title": "Internal Server Error",
"status": 500,
"detail": "Connection timeout",
"instance": "string"
}
{
"title": "Not found",
"status": 404,
"detail": "Not found"
}
Internal Server Error
- application/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"
}