# Customer Use these endpoints to view and manage personal details for a Customer. ## Get Customer - [GET /api/v1/customer/](https://docs.jiko.io/products/customer-api/reference/customer/get_customer_api_v1_customer__get.md): This endpoint retrieves the customer's profile information. This can be for an individual or a business. It returns a Customer object which can be either an Individual or a Business object, containing details like name, address, email, and account_status. ## Upload Document To Customer - [POST /api/v1/documents/{document_type}/](https://docs.jiko.io/products/customer-api/reference/customer/upload_document_to_customer_api_v1_documents__document_type___post.md): This endpoint uploads a verification document (e.g., passport, articles of incorporation) directly to the customer's profile. The document_type is specified in the URL path. The raw file data is sent in the request body with Content-Type and Content-Length headers. It returns the document's new document_id. It is mainly used to verify customer requests (e.g. Customer change request, close account request, ACH request). ## Get Beneficial Owners - [GET /api/v1/customer/beneficial-owners/](https://docs.jiko.io/products/customer-api/reference/customer/get_beneficial_owners_api_v1_customer_beneficial_owners__get.md): For business customers, this endpoint lists the beneficial owners who have been identified for the account. It returns a ListBeneficialOwnersResponse object containing a list of BusinessIndividual objects.