Public
Documentation Settings

Solace Blogs - Solace Cloud User Management

This collection shows you how to create and manage users in Solace PubSub+ Cloud.

POSTInvite User

https://api.solace.cloud/api/v0/users

This invites a user to join Solace PubSub+ Cloud as a member of your account.

The email paramenter in the body specifies the email address of the user you wish to invite.

The roles parameter is an optional list of roles you wish to assign to the user.

Valid Values are: One of administrator, messaging-service-editor, and messaging-service-viewer. Additionally, billing-administrator can be included with any of the preceeding roles.

The user will receive an email prompting them to complete the sign-up process.

HEADERS
Content-Type

application/json

Authorization

Bearer <paste token>

Bodyraw
{
   "email" : "user@domain.com",
   "roles" : ["messaging-service-viewer"]
}

GETGet User in Account

https://api.solace.cloud/api/v0/users/{{userId}}

This returns a list of the users in your account.

HEADERS
Content-Type

application/json

Authorization

Bearer <paste token>

GETGet Roles in Account

https://api.solace.cloud/api/v0/organization/roles

This returns a list of roles available to assign to users in your account, and the permissions associated with each.

HEADERS
Content-Type

application/json

Authorization

Bearer <paste token>

PUTSet Roles for User

https://api.solace.cloud/api/v0/users/{{userId}}/roles

This returns a list of the users in your account.

HEADERS
Content-Type

application/json

Authorization

Bearer <paste token>

Bodyraw
[
	{ "id" : "messaging-service-editor" }
]
Loading