PayApi | R Documentation |
binanceRapi.Pay
An R6Class
generator object
SapiV1PayTransactionsGet Get Pay Trade History (USER_DATA) - If startTimestamp and endTimestamp are not sent, the recent 90 days' data will be returned. - The max interval between startTimestamp and endTimestamp is 90 days. - Support for querying orders within the last 18 months. Weight(UID): 3000
@param start.timestamp integer
@param end.timestamp integer
@param limit integer
@param recv.window integer
@returnType InlineResponse200134
status code : 200 | Pay History
return type : InlineResponse200134
response headers :
status code : 400 | Bad Request
return type : Error
response headers :
status code : 401 | Unauthorized Request
return type : Error
response headers :
apiClient
Handles the client-server communication.
new()
PayApi$new(apiClient)
SapiV1PayTransactionsGet()
PayApi$SapiV1PayTransactionsGet( start.timestamp = NULL, end.timestamp = NULL, limit = NULL, recv.window = NULL, ... )
SapiV1PayTransactionsGetWithHttpInfo()
PayApi$SapiV1PayTransactionsGetWithHttpInfo( start.timestamp = NULL, end.timestamp = NULL, limit = NULL, recv.window = NULL, ... )
clone()
The objects of this class are cloneable with this method.
PayApi$clone(deep = FALSE)
deep
Whether to make a deep clone.
## Not run: #################### SapiV1PayTransactionsGet #################### library(binanceRapi) var.start.timestamp <- 56 # integer | UTC timestamp in ms var.end.timestamp <- 56 # integer | UTC timestamp in ms var.limit <- 100 # integer | default 100, max 100 var.recv.window <- 5000 # integer | The value cannot be greater than 60000 #Get Pay Trade History (USER_DATA) api.instance <- PayApi$new() result <- api.instance$SapiV1PayTransactionsGet(start.timestamp=var.start.timestamp, end.timestamp=var.end.timestamp, limit=var.limit, recv.window=var.recv.window) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.