action jumpseller_get_custom_fields_id_select_options_custom_field_select_option_i { label: "Retrieve a single SelectOption from a CustomField." provider: jumpseller method: GET path: "/custom_fields/{id}/select_options/{custom_field_select_option_id}.json" encoding: json input: { type: "object" properties: { custom_field_select_option_id: { type: "integer" format: "int32" } id: { type: "integer" format: "int32" } } required: ["custom_field_select_option_id", "id"] additionalProperties: false } output: { 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" } } } } } }