Get wallets at specific date
Retrieve the list of all wallets in your company at specific date.
Path parameters
-
The Company ID given by Fipto.
Format should match the following pattern:
[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}
. -
Date
Query parameters
-
page_number number
The page number retrieved in the paginated results. The default value is 1.
-
page_size number
The number of items to include in each page of the paginated results. The default value is 100. The pagination is removed when the value is 0 (unlimited number of elements are returned).
-
sort string
The sort field used to filter data.
Values are
created_at
orvalue
. Default value iscreated_at
. -
valuation_asset string
Specifies the asset used to value the resources retrieved by the endpoint.
Values are
EUR
orUSD
. Default value isEUR
. -
assets array[string]
Filters the wallets returned based on the specified assets. All assets will be returned by default.
curl \
-X GET https://api.fipto.app/companies/9de0691c-bc8d-409b-8f40-75d4f45db2f3/wallets/history/2017-07-21T17:32:28Z
{
"meta": {
"request_id": "string",
"query_parameters": {}
},
"data": [
{
"type": "wallet",
"attributes": {
"name": "string",
"asset": "BTC",
"subtype": "primary",
"balances": {
"available": "string",
"forecasted": "string"
},
"value": "1000",
"valuation_asset": "string"
},
"id": "string"
}
]
}
{
"meta": {
"request_id": "string",
"query_parameters": {}
},
"data": [
{
"type": "wallet",
"attributes": {
"name": "string",
"asset": "BTC",
"subtype": "primary",
"balances": {
"available": "string",
"forecasted": "string"
},
"value": "1000",
"valuation_asset": "string"
},
"id": "string"
}
]
}