Get the request processing status
GET//v1/chains/:chainID/core/blocklog/requests/:requestID/is_processed
Get the request processing status
Request
Path Parameters
chainID stringrequired
ChainID (Bech32)
requestID stringrequired
RequestID (Hex)
Query Parameters
block string
Block index or trie root
Responses
- 200
- 401
The processing result
- application/json
- Schema
- Example (from schema)
Schema
chainId stringrequired
isProcessed booleanrequired
requestId stringrequired
{
"chainId": "chainId",
"requestId": "requestId",
"isProcessed": true
}
Unauthorized (Wrong permissions, missing token)
- application/json
- Schema
- Example (from schema)
Schema
error stringrequired
missingPermission stringrequired
{
"error": "string",
"missingPermission": "string"
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET '/v1/chains/:chainID/core/blocklog/requests/:requestID/is_processed' \
-H 'Accept: application/json'
ResponseClear