A
DeleteEnterpriseUser
AirtableApi.DeleteEnterpriseUser
Description
Deletes an enterprise user by ID.
Use this tool to delete users from an enterprise account, including both internal and managed users. Provide the specific enterprise account ID and user ID for successful deletion.
Input Parameters
{
"parameters": [
{
"name": "enterprise_account_id",
"required": true,
"inferrable": true,
"description": "The unique identifier for the enterprise account containing the user to be deleted. This is required for specifying the account context of the user.",
"value_schema": {
"val_type": "string"
}
},
{
"name": "user_id",
"required": true,
"inferrable": true,
"description": "The unique identifier of the user to be deleted from the enterprise account.",
"value_schema": {
"val_type": "string"
}
}
]
} Output
{
"description": "Response from the API endpoint 'delete-user-by-id'.",
"value_schema": {
"val_type": "json"
},
"available_modes": [
"value",
"error"
]
}