Aquanow CAMS v1.0 (Updated)
  • Welcome
  • Security
    • OAuth2.0
    • API Limits
  • Pagination
  • Webhooks
    • Onboarding
    • Settlements
    • Reports
    • Order
    • Execution
    • Document
  • Market Data
    • Websocket
    • Rest API
      • OHLC
  • API reference
    • Customers
      • Docs
      • Configuration
    • Trades
      • RFQ
    • Orders
    • Executions
    • Settlements
    • Transactions
    • Accounts
      • Credit
      • Balances
      • Configuration
      • Performance
    • Instruments
      • Pairs
      • Assets
    • Custody
      • Balances
      • Allocation
    • Files
    • Webhook
  • Change Log
  • Specification
  • User Guide
    • View Customers
      • Customer Onboarding
      • Upload Onboarding Docs
      • View Customer Account Balances
      • Customer Risk Groups
    • View Customer Trade Activity
    • Manage Team Members
Powered by GitBook
On this page
  • Tax Notices
  • Statements
  1. Webhooks

Reports

The firstFilePath field indicates the full file path for the first file in the set. The 0001 at the end represent the file number, and so using the fileCount all files can be referenced using the firstFilePath

For the example below, the 1st file would be at the following path:

/reports/tax_notice/tax_notices_2024-10-01_2023-10-31_0001.zip

And the last file would be at:

/reports/tax_notice/tax_notices_2024-10-01_2023-10-31_0010.zip

Tax Notices

POST

Notifies that a batch of tax notices are ready.

Body

{
  "messageId": "18fed079-477c-4844-a8f5-2c0075c5136f",
  "messageType": "TAX_NOTICES_READY",
  "messageTime": "2024-11-01T01:24:03.102Z",
  "message": {
    "reportStartPeriod": "2024-10-01",
    "reportEndPeriod": "2024-10-31",
    "firstFilePath": "/reports/tax_notice/tax_notices_2024-10-01_2023-10-31_0001.zip",
    "fileCount": 10
  }
}

Statements

POST

Notifies that a batch of statements are ready

Body

{
  "messageId": "18fed079-477c-4844-a8f5-2c0075c5136f",
  "messageType": "STATEMENTS_READY",
  "messageTime": "2024-11-01T01:24:03.102Z",
  "message": {
    "reportStartPeriod": "2024-10-01",
    "reportEndPeriod": "2024-10-31",
    "firstFilePath": "/reports/statements/statements_2024-10-01_2023-10-31_0001.zip",
    "fileCount": 10
  }
}
PreviousSettlementsNextOrder

Last updated 6 months ago