get_account_orders
Retrieve order details for a specific account on Paper's trading platform. Specify account ID, page number, and results limit to fetch tailored data for analysis or management.
Instructions
Get orders for an account
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| accountId | Yes | Account ID | |
| limit | No | Results per page (default: 10) | |
| page | No | Page number (default: 1) |
Input Schema (JSON Schema)
{
"properties": {
"accountId": {
"description": "Account ID",
"type": "string"
},
"limit": {
"description": "Results per page (default: 10)",
"type": "number"
},
"page": {
"description": "Page number (default: 1)",
"type": "number"
}
},
"required": [
"accountId"
],
"type": "object"
}