action jumpseller_post_custom_fields_id_select_options_json { label: "Create a new Custom Field Select Option." provider: jumpseller method: POST path: "/custom_fields/{id}/select_options.json" encoding: json input: { type: "object" properties: { custom_field_select_option: { type: "object" properties: { value: { type: "string" description: "Value given to the Custom Field Select Option" } } } id: { type: "string" } } required: ["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" } } } } } }