# Retrieve a customer Retrieves details of a Customer. Endpoint: GET /customer/{id} Version: 1.0.0 Security: JWT ## Path parameters: - `id` (string, required) The ID of the customer Example: "cust_5JU9yv0lGSUP" ## Response 200 fields (application/json): - `id` (string) The unique identifier for the customer. Example: "cust_5JU9yv0lGSUP" - `name` (string) The name of the customer. Example: "Prabhat's Arts & Crafts Pvt Ltd" - `customer_type` (string) The type of customer Enum: "individual", "business" - `email` (string) The email address of the customer. Example: "prabhat+customerArt@glomopay.com" - `phone` (string) The phone number of the customer, with country code Example: "+91-9023456789" - `dob` (string) The date of birth of the customer Example: "29-11-2003" - `nationality` (string) The nationality of the customer Example: "IND" - `address` (string) The street address of the customer. Example: "123 Main St" - `city` (string) The city where the customer is located. Example: "Anytown" - `state` (string) The state where the customer is located. Example: "Anystate" - `country` (string) The country where the customer is located. Country should be sent as a [ISO 3166-1 alpha-3](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-3) code. Example: "IND" - `pincode` (string) The postal code/pincode of the customer's address. [List of countries where pincode is mandatory](/api-documentation/countries#countries-requiring-pincode) are listed here. Example: "560048" - `status` (string) The status of the customer. Example: "active" - `created_at` (string) Timestamp representing when the customer was created Example: "2021-06-01T12:00:00Z" - `updated_at` (string) Timestamp representing when the customer was last updated Example: "2021-06-01T12:00:00Z" ## Response 404 fields (application/json): - `error` (string) Enum: "Not found" - `message` (string) Entity not found Enum: "Entity not found"