action biapi_get_clients_id_client {
label: "Get information about a client"
description: "If you use the manage_token or a configuration token, you will get also the client secret.
"
provider: biapi
method: GET
path: "/clients/{id_client}"
encoding: json
input: {
type: "object"
properties: {
expand: {
type: "string"
}
id_client: {
type: "integer"
}
}
required: ["id_client"]
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"
}
}
}
}