action biapi_delete_users_id_user {
label: "Delete the user"
description: "This endpoint deletes the user.
"
provider: biapi
method: DELETE
path: "/users/{id_user}"
encoding: json
input: {
type: "object"
properties: {
expand: {
type: "string"
}
id_user: {
type: "string"
}
}
required: ["id_user"]
additionalProperties: false
}
output: {
type: "object"
required: ["id", "platform", "signin"]
properties: {
id: {
type: "integer"
}
platform: {
type: "string"
enum: ["web", "iPad", "iPhone", "Android", "CAstore", "requestAccess", "sharedAccess", "singleAccess", "transfer", "refresh_token"]
}
signin: {
type: "string"
format: "date-time"
}
}
}
}