action biapi_get_clients { label: "List clients" description: "" provider: biapi method: GET path: "/clients" encoding: json input: { type: "object" properties: { expand: { type: "string" } } additionalProperties: false } output: { type: "object" required: ["clients"] properties: { clients: { type: "array" items: { type: "object" required: ["id", "name", "secret", "redirect_uris", "pro"] properties: { config: { type: "string" description: "customizable config" } id: { type: "integer" } id_logo: { type: "integer" } name: { type: "string" } private_key: { type: "string" } pro: { type: "boolean" description: "Should the client display the company manager page." } public_key: { type: "string" } redirect_uris: { type: "string" } secret: { type: "string" } } } } total: { type: "number" description: "total number of results" } } } }