action jumpseller_get_custom_fields_json { label: "Retrieve all Store's Custom Fields." provider: jumpseller method: GET path: "/custom_fields.json" encoding: json output: { type: "array" items: { 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" } } } } } } } }