action jumpseller_get_custom_fields_id_json { label: "Retrieve a single CustomField." provider: jumpseller method: GET path: "/custom_fields/{id}.json" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { custom_field: { type: "object" properties: { id: { type: "integer" format: "int32" description: "Unique identifier of the Custom Field" } label: { type: "string" description: "Label given to the Custom Field" } type: { type: "string" description: "Type of the Custom Field" enum: ["text", "selection", "input"] } values: { type: "array" description: "All the possible Values of the Custom Field (for type 'selection')" items: { type: "string" } } } } } } }