> 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/release-kyc-pending-transactions.md).

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


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://axis-docs.fuspay.finance/release-kyc-pending-transactions.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
