Ledger Ops Gateway (0.0.26)
Download OpenAPI specification:Download
Allow execute ledger operation and query transaction into the ledger Deprecated
Create send Generic Ledger Operation action
Authorizations:
ApplicationToken
Request Body schema: application/json
context | string or null |
dependencies | Array of strings |
finbootSession | string |
glo | object |
intent | string |
tag | string or null |
walletId | string |
walletPassword | string |
Responses
Request samples
- Payload
Content type
application/json
{- "context": "string",
- "dependencies": [
- "string"
], - "finbootSession": "string",
- "glo": { },
- "intent": "string",
- "tag": "string",
- "walletId": "string",
- "walletPassword": "string"
}
Response samples
- 201
Content type
application/json
{- "id": "string",
- "state": "PENDING"
}
Allow execute ledger operation and query transaction into the ledger
New Method to create send Generic Ledger Operation action
Authorizations:
ApplicationToken
Request Body schema: application/json
dependencies | Array of strings |
required | object |
intent | string |
ledger required | string |
ledgerId required | string |
pluginId required | string |
object | |
tag | string or null |
wallet required | string |
walletId required | string |
Responses
Request samples
- Payload
Content type
application/json
{- "dependencies": [
- "string"
], - "glo": {
- "params": {
- "args": [
- "string"
], - "contractInstance": "string",
- "methodName": "string"
}, - "type": "contract_call"
}, - "intent": "string",
- "ledger": "string",
- "ledgerId": "string",
- "pluginId": "string",
- "pluginSecrets": {
- "property1": "string",
- "property2": "string"
}, - "tag": "string",
- "wallet": "string",
- "walletId": "string"
}
Response samples
- 201
Content type
application/json
{- "id": "string",
- "state": "PENDING"
}
Emulate a single transaction and get its result Deprecated
Emulate a single transaction and get its result
Authorizations:
ApplicationToken
Request Body schema: application/json
args | Array of strings |
instanceId | string |
methodName | string |
Responses
Request samples
- Payload
Content type
application/json
{- "args": [
- "string"
], - "instanceId": "string",
- "methodName": "string"
}
Response samples
- 200
Content type
application/json
{- "result": "string"
}
Search transaction base information with or without receipt Deprecated
Search transaction base information with or without receipt
Authorizations:
ApplicationToken
query Parameters
ledgerId required | string Ledger id |
locator required | string Transaction Hash |
withReceipt required | boolean Flag to allow return the transaction and its receipt |
Responses
Response samples
- 200
Content type
application/json
{- "locator": "string",
- "smartContractAddress": "string",
- "status": "string"
}