Multi-Tenant Configuration : Managing Tenants

Managing Tenants
The REST commands to create, modify, and delete tenants are considered privileged operations, hence they must be accompanied with valid super user credentials. REST commands use basic authorization (basic auth), which means credentials are passed using the Authorization header:
Authorization: Basic xxx
Where xxx is the user ID and password, separated by a colon, and then base64 encoded. For example, if the super user and password are cassandra:cassandra, the header would look like this:
Authorization: Basic Y2Fzc2FuZHJhOmNhc3NhbmRyYQo=
A summary of tenant-management commands is given below:
The following sections describe each command in detail.