POST/trusted-issuers-registry/v3/jsonrpc
The JSON-RPC API provides methods assisting the construction of blockchain transactions for TIR SC operations, and interaction with the ledger.
Request
- application/json
Body
required
The body follows the JSON-RPC 2.0 specification.
It requires the following fields:
- jsonrpc: must be exactly "2.0"
- method: method to be invoked
- params: method parameters
- id: identifier established by the client
API Methods
insertIssuer
DEPRECATED. This method is not available in version V3 anymore. Please use "insertIssuer" from Trusted Issuers Registry V4.
updateIssuer
DEPRECATED. This method is not available in version V3 anymore. Please use "updateIssuer" from Trusted Issuers Registry V4.
addIssuerProxy
Call to build an unsigned transaction to insert a new proxy to an issuer. It can be added by the issuer itself or an admin registered in the Trusted Policies Registry to update issuers.
Parameters:
- from: Ethereum address of the administrator
- did: DID of the issuer
- proxyData: Proxy configuration to be used during the verification of credentials. For the
registration to be accepted, the configured proxy must serve a status list which is valid and
signed by the issuer requesting the proxy. The validation is done by combining "prefix" with
"testSuffix" and executed before accepting the registration. Proxy must be configured before
any VCs are issued. The validation will fail if the credential status proxy doesn't exist.
It must be a JSON object converted to hex string. Example:
Buffer.from('{"prefix":"https://example.net","headers":{"Authorization":"Bearer 1234567890"},"testSuffix":"/cred/1"}').toString("hex")
.
updateIssuerProxy
Call to build an unsigned transaction to update an existing proxy of an issuer. It can be updated by the issuer itself or an admin registered in the Trusted Policies Registry to update issuers.
Parameters:
- from: Ethereum address of the administrator
- did: DID of the issuer
- proxyId: ID of the existing proxy
- proxyData: Proxy configuration to be used during the verification of credentials. For the
registration to be accepted, the configured proxy must serve a status list which is valid and
signed by the issuer requesting the proxy. The validation is done by combining "prefix" with
"testSuffix" and executed before accepting the registration. Proxy must be configured before
any VCs are issued. The validation will fail if the credential status proxy doesn't exist.
It must be a JSON object converted to hex string. Example:
Buffer.from('{"prefix":"https://example.net","headers":{"Authorization":"Bearer 1234567890"},"testSuffix":"/cred/1"}').toString("hex")
.
sendSignedTransaction
Call to send a signed transaction to the blockchain.
Must be exactly "2.0"
Method that needs to be invoked
Array of parameters
Identifier established by the client
Responses
- 200
- 400
Response
- application/json
- Schema
- Example (from schema)
- Build tx
- Send Transaction
Schema
- MOD2
Must be exactly "2.0"
Same identifier established by the client in the call
result object
Result of the call
{
"jsonrpc": "string",
"id": 0,
"result": {}
}
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"from": "0x416e6e6162656c2e4c65652e452d412d506f652e",
"to": "0xFde86148db58f57787C06BeAf63a9c3f789357b3",
"data": "0x0000...",
"nonce": "0x00",
"chainId": "0x1b3b",
"gasLimit": "0x10000",
"gasPrice": "0x00",
"value": "0x00"
}
}
{
"jsonrpc": "2.0",
"id": 1,
"result": "0xe670ec64341771606e55d6b4ca35a1a6b75ee3d5145a99d05921026d1527331"
}
Bad request
- application/problem+json
- Schema
- Example (from schema)
- Bad Request
- Invalid Token
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": "Bad request"
}
{
"title": "Invalid token",
"status": 400,
"detail": "Invalid token"
}