Fetch Transaction Data

View as Markdown
### Fetch Transaction Data **Endpoint:** `{{host}}/apis/external/transaction/fetchTransactionData` **Method:** GET This endpoint is used to retrieve transaction data based on specified parameters such as date range, status, and type. The request allows users to filter transactions by providing the following query parameters: - **offset**: The starting point for the returned data, useful for pagination. - **pageSize**: The number of records to return in the response. - **start_date**: The beginning of the date range for filtering transactions (in Unix timestamp format). - **end_date**: The end of the date range for filtering transactions (in Unix timestamp format). - **status**: The status of the transactions to filter (e.g., completed). - **type**: The type of transaction to retrieve (e.g., invoice). - **incrementalDataOnly**: A flag indicating whether to return only data that has changed since the last request. The response will include the transaction data that matches the specified criteria, along with pagination details such as the current page and total number of pages. In the last execution, the response indicated no transactions were found within the provided parameters.

Response

Successful response