> For the complete documentation index, see [llms.txt](https://axis-docs.fuspay.finance/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://axis-docs.fuspay.finance/order-history-and-status/sell-payout-verification-endpoint.md).

# 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.

<mark style="color:blue;">`GET`</mark> `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&#x20;

{% tabs %}
{% tab title="200: OK" %}
{% code overflow="wrap" lineNumbers="true" fullWidth="true" %}

```javascript
{
	"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": ""
	}
}
```

{% endcode %}
{% endtab %}
{% endtabs %}

Response definition&#x20;

| 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
