> For the complete documentation index, see [llms.txt](https://prepaidify.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://prepaidify.gitbook.io/docs/kyc-sharing-api/api/submit-for-approval.md).

# Submit for approval

**Http method and path**

* POST `/open/api/kyc/share/information`

**Http body**

| Element         | Mandatory | Data Type | Remarks                                                                                             |
| --------------- | --------- | --------- | --------------------------------------------------------------------------------------------------- |
| requestNo       | Y         | string    | Request ID (must be unique)                                                                         |
| email           | Y         | string    | Email (must be unique)                                                                              |
| kycPlatform     | Y         | string    | kyc Platform                                                                                        |
| holderType      | Y         | string    | 1: Personal                                                                                         |
| callbackUrl     | Y         | string    | Callback Url                                                                                        |
| +individualInfo | Y         | object    | identity information                                                                                |
| └firstName      | Y         | string    | firstName                                                                                           |
| └lastName       | Y         | string    | lastName                                                                                            |
| └dob            | Y         | string    | Date of birth：YYYY-MM-DD                                                                            |
| └country        | Y         | string    | country                                                                                             |
| └gender         | Y         | Integer   | gender 1: man 2: woman                                                                              |
| └idDocType      | Y         | string    | certificate type 1:ID Card 2:Passport 3:RESIDENCE\_PERMIT 4:DRIVERS                                 |
| └number         | Y         | string    | ID number                                                                                           |
| └validUntil     | Y         | string    | Document expiration date, format: YYYY-MM-DD. If it is valid indefinitely, please enter 2099-01-01. |
| └ipAddress      | Y         | string    | ip address                                                                                          |
| +address        | Y         | object    | address information                                                                                 |
| └country        | Y         | string    | country                                                                                             |
| └state          | Y         | string    |                                                                                                     |
| └city           | Y         | string    | city                                                                                                |
| └address        | Y         | string    | address                                                                                             |
| └zipCode        | Y         | string    | postcode                                                                                            |
| └ssn            | Y         | string    | If the country is the United States, Social Security Number (SSN) is required.                      |

**Request Example**

```
```

```
{
    "requestNo": "222222",
    "email": "22222@123.com",
    "kycPlatform": "123",
    "holderType": "1",
    "callbackUrl":"https://google.com",
    "individualInfo": {
        "firstName": "213",
        "lastName": "213",
        "dob": "2023-01-01",
        "country": "US",
        "gender": "1",
        "idDocType": "1",
        "number": "123",
        "validUntil": "2023-01-02",
        "ipAddress": "123",
        "address": {
            "country": "USA",
            "state": "213",
            "city": "213",
            "address": "123",
            "zipCode": "123",
            "ssn": "123"
        }
    }
}
```

**Response Parameter**

| Data Type | Data Type | Remarks      |
| --------- | --------- | ------------ |
| success   | boolean   | Success flag |
| error     | boolean   | flag         |
| msg       | string    | message      |
| code      | integer   | code         |
| model     | Object    | data         |
| traceId   | string    | traceId      |

**Response Example**

```
```

```
{
    "code": "0",
    "msg": "操作成功",
    "model": null,
    "traceId": "652366764a52596446c629939e486913",
    "success": true,
    "error": false
}
```

**Remarks**

* For more error codes, please refer to the error code descriptions on the homepage.


---

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

```
GET https://prepaidify.gitbook.io/docs/kyc-sharing-api/api/submit-for-approval.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
