get_ramp_statements
Retrieve Ramp financial statements by specifying date ranges and pagination options for streamlined data management and analysis.
Instructions
Retrieve Ramp statements with optional date filtering and pagination.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| from_date | No | Start date in ISO format (YYYY-MM-DD) | |
| page_size | No | Number of results per page | |
| start | No | Token for pagination | |
| to_date | No | End date in ISO format (YYYY-MM-DD) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"from_date": {
"description": "Start date in ISO format (YYYY-MM-DD)",
"type": "string"
},
"page_size": {
"description": "Number of results per page",
"type": "number"
},
"start": {
"description": "Token for pagination",
"type": "string"
},
"to_date": {
"description": "End date in ISO format (YYYY-MM-DD)",
"type": "string"
}
},
"type": "object"
}