action biapi_get_connectors_id_connector_sources_id_connector_source_fields { label: "Get fields specific to a domain and a source" description: "" provider: biapi method: GET path: "/connectors/{id_connector}/sources/{id_connector_source}/fields" encoding: json input: { type: "object" properties: { expand: { type: "string" } id_connector: { type: "integer" } id_connector_source: { type: "integer" } } required: ["id_connector", "id_connector_source"] additionalProperties: false } output: { type: "object" required: ["source_fields"] properties: { source_fields: { type: "array" items: { type: "object" required: ["id_connector_source", "name", "label"] properties: { id_connector_source: { type: "integer" description: "ID of the related connector source" } label: { type: "string" description: "Label to display to user" } name: { type: "string" description: "Name of the config" } regex: { type: "string" description: "If set, the value must match this regexp" } required: { type: "boolean" description: "If true, config has to be set to use this source" } secret: { type: "boolean" description: "If true, value must be hidden on fronts" } type: { type: "string" description: "Type of config" } } } } total: { type: "number" description: "total number of results" } } } }