action jumpseller_get_customer_categories_id_customers_json { label: "Retrieves the customers in a CustomerCategory." provider: jumpseller method: GET path: "/customer_categories/{id}/customers.json" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { customer: { type: "object" properties: { billing_address: { properties: { address: { type: "string" description: "Address of the Customer's Billing Address" } city: { type: "string" description: "City of the Customer's Billing Address" } country: { type: "string" description: "Country code of the Customer's Billing Address (ISO 3166-1 alpha-2)" } municipality: { type: "string" description: "Municipality of the Customer's Billing Address" } name: { type: "string" description: "Name of the Customer's Billing Address" } postal: { type: "string" description: "Postal code of the Customer's Billing Address" } region: { type: "string" description: "Region code of the Customer's Billing Address (Use the FIPS standard - http://www.geonames.org/countries/)" } surname: { type: "string" description: "Surname of the Customer's Billing Address" } taxid: { type: "string" description: "Tax id of the Customer's Billing Address" } } } customer_additional_fields: { type: "array" items: { type: "object" properties: { customer_additional_field: { type: "object" properties: { area: { type: "string" description: "Area of the Customer Additional Field" } checkout_custom_field_id: { type: "integer" format: "int32" description: "Unique identifier of the Checkout Custom Field" } customer_id: { type: "integer" format: "int32" description: "Unique identifier of the Customer" } id: { type: "integer" format: "int32" description: "Unique identifier of the Customer Additional Field" } label: { type: "string" description: "Label of the Customer Additional Field" } value: { type: "string" description: "Value of the Customer Additional Field" } } } } } } customer_categories: { type: "array" items: { type: "object" properties: { category: { type: "object" properties: { code: { type: "string" description: "Code of the CustomerCategory" } id: { type: "integer" format: "int32" description: "Unique identifier of the CustomerCategory" } name: { type: "string" description: "Name of the CustomerCategory" } } } } } } email: { type: "string" description: "Email of the Customer" } id: { type: "integer" format: "int32" description: "Unique identifier of the Customer" } name: { type: "string" description: "Name of the Customer" } phone: { type: "string" description: "Phone of the Customer" } shipping_address: { properties: { address: { type: "string" description: "Address of the Customer's Shipping Address" } city: { type: "string" description: "City of the Customer's Shipping Address" } country: { type: "string" description: "Country code of the Customer's Shipping Address (ISO 3166-1 alpha-2)" } municipality: { type: "string" description: "Municipality of the Customer's Shipping Address" } name: { type: "string" description: "Name of the Customer's Shipping Address" } postal: { type: "string" description: "Postal code of the Customer's Shipping Address" } region: { type: "string" description: "Region code of the Customer's Shipping Address (Use the FIPS standard - http://www.geonames.org/countries/)" } surname: { type: "string" description: "Surname of the Customer's Shipping Address" } } } status: { type: "string" description: "Status of the Customer" enum: ["approved", "pending", "disabled"] } surname: { type: "string" description: "Surname of the Customer" } } } } } } }