action jumpseller_post_checkout_custom_fields_json { label: "Create a new CheckoutCustomField." description: "Type values can be: input, selection, checkbox, date or text. Area values can be: contact, billing_shipping or other." provider: jumpseller method: POST path: "/checkout_custom_fields.json" encoding: json 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"] } } } } } }