action jumpseller_get_checkout_custom_fields_id_json { label: "Retrieve a single CheckoutCustomField." provider: jumpseller method: GET path: "/checkout_custom_fields/{id}.json" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { checkout_custom_field: { type: "object" properties: { area: { type: "string" description: "Area of the CheckoutCustomField" enum: ["contact", "billing_shipping", "other"] } custom_field_select_options: { type: "array" description: "The values for the CheckoutCustomField selection" items: { type: "string" } } deletable: { type: "boolean" description: "True if the CheckoutCustomField can be removed from the store" } id: { type: "integer" format: "int32" description: "Unique identifier of the CheckoutCustomField" } label: { type: "string" description: "Label given to the CheckoutCustomField" } position: { type: "integer" format: "int32" description: "Position of the CheckoutCustomField" } required: { type: "boolean" description: "True if the CheckoutCustomField is mandatory" } type: { type: "string" description: "Type of the CheckoutCustomField" enum: ["text", "select", "input", "checkbox"] } } } } } }