# Payout Status

This endpoint is used to query the status of a payout&#x20;

<mark style="color:blue;">`GET`</mark> `https://exchanger-api.fuspay.finance/api/v1/no-auth/PartnerP2P/GetPayout?intrapay_merchant_id=intra_merchant_954512&currency=GHS&withdrawal_reference=P17004196996oRbpiHxy/`

Transfer to a bank account or mobile money

#### Query Parameters

| Name                                                     | Type   | Description                                              |
| -------------------------------------------------------- | ------ | -------------------------------------------------------- |
| intrapay\_merchant\_id<mark style="color:red;">\*</mark> | String | Your intrapay merchant ID                                |
| currency<mark style="color:red;">\*</mark>               | String | The currency of the payout request                       |
| withdrawal\_reference<mark style="color:red;">\*</mark>  | String | The reference of the withdrawal generated on your system |

#### Headers

| Name                                            | Type   | Description         |
| ----------------------------------------------- | ------ | ------------------- |
| Authorization<mark style="color:red;">\*</mark> | String | partners public key |

{% tabs %}
{% tab title="200: OK Successful Transfer or Failed Transfer" %}

<pre class="language-javascript" data-overflow="wrap" data-line-numbers data-full-width="true"><code class="lang-javascript"><strong>The below is a successful payout response
</strong><strong>
</strong><strong>{
</strong>  withdrawal_reference: 'P17005609380KKXXYYsS',
  amount: 130,
  currency: 'GHS',
  status: 'COMPLETED',
  channel: 'MOMO',
  type: 'CREDIT',
  customer: { accountName: 'Enoch Peprah', accountNumber: '0542314924' },
  network: 'MTN',
  created_at: '2023-11-21T10:03:00.568Z',
  updated_at: '2023-11-21T10:03:00.568Z'
}

for failed payouts

{
  withdrawal_reference: 'P17004196996oRbpiHxy',
  amount: undefined,
  currency: undefined,
  status: undefined,
  channel: undefined,
  type: undefined,
  customer: undefined,
  network: undefined,
  created_at: undefined,
  updated_at: undefined
}
</code></pre>

{% endtab %}
{% endtabs %}
