post: operationId: PostCustomers summary: Create a Customer description: Creates a Customer account. requestBody: content: application/json: schema: $ref: ../components/schemas/StorePostCustomersReq.yaml x-codeSamples: - lang: JavaScript label: JS Client source: $ref: ../code_samples/JavaScript/customers/postundefined - lang: Shell label: cURL source: $ref: ../code_samples/Shell/customers/postundefined tags: - Customer responses: '200': description: OK content: application/json: schema: type: object properties: customer: $ref: ../components/schemas/Customer.yaml '400': $ref: ../components/responses/400_error.yaml '404': $ref: ../components/responses/not_found_error.yaml '409': $ref: ../components/responses/invalid_state_error.yaml '422': description: A customer with the same email exists content: application/json: schema: type: object properties: code: type: string description: The error code type: type: string description: The type of error message: type: string description: Human-readable message with details about the error example: code: invalid_request_error type: duplicate_error message: >- A customer with the given email already has an account. Log in instead '500': $ref: ../components/responses/500_error.yaml