# Release KYC Pending Transactions

<mark style="color:green;">`POST`</mark> `https://exchanger-api.fuspay.finance/api/v1/no-auth/Axis/ReleaseKycPendingOrder`

#### Request Body

| Name               | Type   | Description                                              |
| ------------------ | ------ | -------------------------------------------------------- |
| verified\_email    | String | This is the user's verified email                        |
| verified\_phone    | String | This is the user's verified phone number                 |
| partner\_order\_id | String | This is the order id of the transaction from the partner |

{% hint style="success" %}
True means user's KYC is complete and initiated KYC corresponds with verified KYC&#x20;
{% endhint %}

{% tabs %}
{% tab title="200: OK " %}

{% code overflow="wrap" %}

```json
{
"release_order_status": "COMPLETED", //"PENDING"
"partner_order_id": ""
"KYC_status" : true/false
"Txn_status": "pending/completed" 
"Meta_data" : {"Message": "error mismatched email and phone or KYC awaiting approval"}
} 
```

{% endcode %}
{% endtab %}

{% tab title="Second Tab" %}

{% endtab %}
{% endtabs %}

<table><thead><tr><th width="133">Key</th><th>Type</th><th>Description</th><th>Value</th></tr></thead><tbody><tr><td>release_order_status</td><td>String</td><td>This is the current state of a release order</td><td>completed, pending</td></tr><tr><td>partner_order_id</td><td>String</td><td>This is the order id of the transaction from the partner</td><td></td></tr><tr><td>kyc_status</td><td>Boolean</td><td>This is the current state of a customer's identity verification process. </td><td>true/false</td></tr><tr><td>txn_status</td><td>String</td><td>This refers to the current state of a financial transaction</td><td>pending/completed</td></tr><tr><td>meta_data</td><td>Object</td><td>This contains is information about the KYC process</td><td>Message: error mismatched email and phone or KYC awaiting approval</td></tr></tbody></table>
