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/
Request Headers
Name
Type
Description
Authorization*
String
Bearer ${partner_secret_key}
x-partner-id*
String
"pxxxxxx"
Request Body
Name
Type
Description
order_type*
String
"buy or sell"
order_no*
String
This is the order number of the transaction
Sample code
{
"order_type":"buy",
"order_no":"Ayomide_2"
}
Response Body
{
success: true,
message: string,
data: {
....
}
}
Last updated
Was this helpful?