Skip to main content

Get the request processing status

GET 

//v1/chain/core/blocklog/requests/:requestID/is_processed

Get the request processing status

Request

Path Parameters

    requestID stringrequired

    RequestID (Hex)

Query Parameters

    block string

    Block index or trie root

Responses

The processing result

Schema
    chainIdstringrequired
    isProcessedbooleanrequired
    requestIdstringrequired
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "/v1/chain/core/blocklog/requests/:requestID/is_processed");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
Parameters
— pathrequired
— query
ResponseClear

Click the Send API Request button above and see the response here!