A successful response.
PageResponse is to be embedded in gRPC response messages where the corresponding request message has used PageRequest.
message SomeResponse { repeated Bar results = 1; PageResponse page = 2; }
const response = await fetch('https://stride.nownodes.io/Stride-Labs/stride/icacallbacks/callback_data', { method: 'GET', headers: {}, }); const data = await response.json();
{ "callbackData": [ { "callbackKey": "text", "portId": "text", "channelId": "text", "sequence": "text", "callbackId": "text", "callbackArgs": "Ynl0ZXM=" } ], "pagination": { "next_key": "Ynl0ZXM=", "total": "text" } }
const response = await fetch('https://stride.nownodes.io/Stride-Labs/stride/icacallbacks/callback_data/{callbackKey}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "callbackData": { "callbackKey": "text", "portId": "text", "channelId": "text", "sequence": "text", "callbackId": "text", "callbackArgs": "Ynl0ZXM=" } }