GetApprovalTracker
Retrieves tracking information for approval usage.
Proto Definition
message QueryGetApprovalTrackerRequest {
string amountTrackerId = 1;
string approvalLevel = 2; // "collection", "incoming", or "outgoing"
string approverAddress = 3; // Leave blank if approvalLevel is "collection"
string trackerType = 4; // "overall", "to", "from", "initiatedBy"
string collectionId = 5;
string approvedAddress = 6; // Leave blank if trackerType is "overall"
string approvalId = 7;
}
message QueryGetApprovalTrackerResponse {
ApprovalTracker tracker = 1;
}
message ApprovalTracker {
string numTransfers = 1; // Number of transfers that have been processed
repeated Balance amounts = 2; // Cumulative balances associated with processed transfers
string lastUpdatedAt = 3; // Last updated at time (UNIX millisecond timestamp)
}Usage Example
Response Example
Last updated