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