Operations list
This method returns an operations report as an Excel (XLSX) file encoded in Base64 format.
Endpoint
GET/v2/report/operations
Link
Request Parameters
Parameter
Type
Required
Description
pageSize
integer
Yes
Number of records per page. Example: 10
page
integer
Yes
Page number (starting from 0). Example: 0
Example request:
text
Response Structure
The response is returned in JSON format:
json
Field
Type
Description
data
string
Excel file (XLSX) content encoded in Base64
name
string
File name (may be empty)
How to Open the File from the data Field
The data field contains a Base64 string that needs to be decoded and saved as an .xlsx file.
Method 1 — via base64.guru (no coding)
Copy the
datafield value from the JSON responsePaste the string into the input field
Click "Decode Base64 to File"
Click "Download" — the file will be downloaded
Rename the downloaded file by adding the
.xlsxextension (if not added automatically)Open the file in Microsoft Excel or Google Sheets
Method 2 — via base64decode.org
Paste the string from the
datafieldClick "Decode"
Click "Download"
Save the file with the
.xlsxextension
Method 3 — via Python (for developers)
python
Method 4 — via Terminal (Mac/Linux)
bash
Pagination
To retrieve all data, use the page and pageSize parameters:
Request
Result
?pageSize=10&page=0
Records 1–10
?pageSize=10&page=1
Records 11–20
?pageSize=10&page=2
Records 21–30
Notes
The Base64 string in the
datafield starts withUEsDBBQ— this is the standard header of a ZIP archive (XLSX format) encoded in Base64If the file does not open, make sure you copied the entire string without spaces or line breaks
A valid Base64 string always ends with
=or==
Last updated

