action biapi_post_clients { label: "Create a client" description: "" provider: biapi method: POST path: "/clients" encoding: json input: { type: "object" properties: { expand: { type: "string" } } additionalProperties: false } output: { type: "object" required: ["id", "name", "pro", "redirect_uris", "secret"] 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" } } } }