Sell/Payout Verification Endpoint

This is used to verify the payout status of sell transaction. This can be used to know if we have disbursed the fiat to the benefiacry bank account provided during sell.

GET https://exchanger-api.fuspay.finance/api/v1/no-auth/Axis/FetchTransferStatus?partner_order_id=Ayomide_2

Request Headers

Name
Type
Description

partner_order_id

String

This is the id of the sell order created

Response Body

{
	"success": true,
	"message": "Payout Transfer Fetched ...",
	"data": {
		"status": "SUCCESSFUL",
		"message": "Transfer completed. No action needed",
		"full_name": "ALL BRAD",
		"account_number": "63*****884",
		"session_id": ""
	}
}

Response definition

Key
Description
Possible values

success

This shows the status of your API call

message

data

Object containing info about the status of the payout

status

This shows the status of the payout. Possible values are "SUCCESFUL"

message

This message gives instructions as to the next action required for transaction resolution

full_name

Beneficiary's full name

account_number

Beneficary's account number

session_id

This is an identifier from the financial institution showing that the transaction has been processed

Possible Transaction Status

Statuses:

  • COMPLETED OR SUCCESSFUL - Transfer completed and user have the money

  • FAILED - Transfer failed

  • PENDING - Transfer is pending on fuspay or upstream gateway

  • INITIATED - Transfer initiated by fuspay or upstream gateway

  • GATEWAY_ERROR - Upstream payment gateway is having issues

  • UPSTREAM_GATEWAY_ERROR - Transfer completed and user have the money

  • GATEWAY_ERROR - Transfer is processing or abandoned as a result of upstream gateway error or network

  • GATEWAY_NOT_AVAILABLE - Upstream payment gateway is offline

** Any other status may come up because of payment gateway upstream issues, however COMPLETED or SUCCESSFUL indicates the payment is good

Last updated