get_transactions_msg
Key | Type | Description | Required |
---|---|---|---|
header | object | This object is required in every call. The information it includes is used to verify the signature. | true |
message | string | This tag specifies the JSON schema object to validate against. For this call, use get_transactions_msg . | false |
search_filters | object | This is an optional object with all-optional attributes. The values inside this object filter the results to be returned. | false |
Used By Endpoints:
- /transfer_sila
Note - We recently renamed the field auth_handle
to app_handle
. For backward compatibility, auth_handle
is still valid but has been removed from our documentation.
{
"header": {
"created": 1234567890,
"app_handle": "app_handle",
"user_handle":"user_handle",
"version": "0.2",
"reference": "<your unique id>"
},
"message": "get_transactions_msg",
"search_filters": {
"transaction_id": "some UUID string assigned by Sila",
"reference_id": "the reference string sent in the header object when transaction request was made",
"show_timelines": false,
"sort_ascending": false,
"max_amount": 1300,
"min_amount": 1000,
"statuses": ["queued", "pending", "failed", "success", "rollback", "review"],
"start_epoch": 1234567860,
"end_epoch": 1234567891,
"page": 1,
"per_page": 20,
"transaction_types": ["issue", "redeem", "transfer"]
}
}
Updated about 2 months ago