action jumpseller_get_products_id_fields_json { label: "Retrieve all Product Custom Fields" provider: jumpseller method: GET path: "/products/{id}/fields.json" encoding: json output: { type: "array" items: { type: "object" properties: { field: { type: "object" properties: { custom_field_id: { type: "integer" format: "int32" description: "Unique identifier of the ProductCustomField" } id: { type: "integer" format: "int32" description: "Unique identifier of the ProductCustomField value" } label: { type: "string" description: "The label for the ProductCustomField" } type: { type: "string" description: "The type of the ProductCustomField" } value: { type: "string" description: "The value for the ProductCustomField" } value_id: { type: "string" description: "The value id for the ProductCustomField" } } } } } } }