action biapi_get_providers_id_connector_logos_main {
label: "Get all links to the files associated with this connector."
description: "This endpoint returns all links to files associated with this connector.
"
provider: biapi
method: GET
path: "/providers/{id_connector}/logos/main"
encoding: json
input: {
type: "object"
properties: {
expand: {
type: "string"
}
id_connector: {
type: "integer"
}
}
required: ["id_connector"]
additionalProperties: false
}
output: {
type: "object"
required: ["connectorlogos"]
properties: {
connectorlogos: {
type: "array"
items: {
type: "object"
required: ["id", "id_connector", "id_file"]
properties: {
id: {
type: "integer"
}
id_connector: {
type: "integer"
description: "ID of the connector"
}
id_file: {
type: "integer"
description: "Id of the Bank/Provider Logo"
}
type: {
type: "string"
description: "Logo's type"
}
}
}
}
total: {
type: "number"
description: "total number of results"
}
}
}
}