action jumpseller_get_customers_id_fields { label: "Retrieves the Customer Additional Field of a Customer." provider: jumpseller method: GET path: "/customers/{id}/fields" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } output: { 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" } } } } } } }