# Individuals Use these endpoints to initiate, manage, and complete KYC for Individuals. When an application has `status: “APPROVED”`, a [Customer](reference/customers/get_customer_data_api_v1_customers__customer_id___get) is created for the Individual. Customers can have multiple [Pockets](/products/partner-api/reference/pockets/list-pockets-v2). ## Upload Document - [POST /api/v1/documents/{document_id}/](https://docs.jiko.io/products/partner-api/reference/businesses/upload-application-document.md) ## Create Application - [POST /api/v1/applications/](https://docs.jiko.io/products/partner-api/reference/individuals/create_application_api_v1_applications__post.md): Create an application. You must apply to potentially create a customer using the application, assuming KYC is successful. When creating an application, keep in mind that customers must be at least 18 years old to open an account with Jiko. ## Get Application - [GET /api/v1/applications/{application_id}/](https://docs.jiko.io/products/partner-api/reference/individuals/get_application_api_v1_applications__application_id___get.md): Fetch and observe an existing application. ## Apply - [POST /api/v1/applications/{application_id}/apply/](https://docs.jiko.io/products/partner-api/reference/individuals/apply_api_v1_applications__application_id__apply__post.md): Initiate automatic KYC. Transitions the application from CREATED status to SUBMITTED status. Once the async KYC process is completed, the application will move from SUBMITTED to another status. ## List Agreements - [GET /api/v1/agreements/](https://docs.jiko.io/products/partner-api/reference/individuals/list_agreements_api_v1_agreements__get.md): Partner agreements and disclosures are available through the API in a versioned bundle. The version of the fetched bundle must be attached to all incoming applications. ## Upload Document To Application - [POST /api/v1/applications/{application_id}/documents/{document_type}/file/](https://docs.jiko.io/products/partner-api/reference/individuals/upload_document_to_application_api_v1_applications__application_id__documents__document_type__file__post.md): Upload documents to the application for more detailed KYC or manual review. As with all other endpoints, the bearer token and x-jiko-idempotency is needed, but x-jiko-signature is not needed. The file should be posted unprocessed in the request body, in the same manner as curl -X POST --data-binary @my_file.png does. The maximum file size for ID_FRONT, ID_BACK, SELFIE and PASSPORT is 5 MB. Other files can be up to 50 MB. Documents can be uploaded before and after calling Apply. ## Upload Document - [POST /api/v1/documents/{document_id}/](https://docs.jiko.io/products/partner-api/reference/individuals/upload-application-document.md)