Order History & Status

This endpoint is used to get transactions within a date range and verify transaction status.

You can use this endpoint to make two types of query

  • Query a single transaction: To know more about a transaction status, you can use the "search_partner_order_ref" to query the transaction. If you are using this key, ignore the start and end date parameters

  • Query using date range: If you want to see all the history of activities on your wallet between a date range use the "start_date" & "end_date". While using this key, ignore the search_partner_order_ref

Get Single Order Endpoint

This is used to get the details of a single order

GET https://exchanger-api.fuspay.finance/api/v1/no-auth/Axis/GetOrder/

Query Parameters

Name
Type
Description

order_type*

String

"buy or sell"

order_no*

String

This is the order number of the transaction

Headers

Name
Type
Description

Authorization*

String

Bearer ${partner_secret_key}

x-partner-id*

String

"pxxxxxx"

{
     success: true,
     message: string,
     data: {
     .....
     }
     }

Get Multiple Order Endpoint

This is used to get the details of multiple orders.

GET https://exchanger-api.fuspay.finance/api/v1/no-auth/Axis/OrderHistory/

Query Parameters

Name
Type
Description

order_type*

String

"buy or sell"

date_from*

String

"2024-03-01 16:000"

date_to*

String

"2024-03-02 16:000"

Headers

Name
Type
Description

Authorization*

String

"Bearer ${partner_secret_key}"

x-partner-id*

String

"pxxxxxx"

{
     success: true,
     message: string,
     data: {
     .....
     }
     }

Last updated