action jumpseller_get_custom_fields_id_select_options_json { label: "Retrieve all Store's Custom Fields." provider: jumpseller method: GET path: "/custom_fields/{id}/select_options.json" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { custom_field_select_option: { type: "object" properties: { id: { type: "integer" format: "int32" description: "Unique identifier of the Custom Field Select Option" } value: { type: "string" description: "Value given to the Custom Field Select Option" } } } } } } }