Account Overview
In order to disambiguate who Prismatic's customers are, and who your customers are, we refer to Prismatic's customers (i.e. you) as organizations and your customers as customers.
Creating your organization
To create an organization within Prismatic, first sign up.
For large organizations with multiple distinct divisions, consider creating an organization per division.
If your company has already created an organization, ask your organization's administrator to create a user account for you instead. Registering with Prismatic again will create a second organization.
Editing your organization
- Web App
- CLI
- API
To edit any settings of your organization, click the Settings link on the left-hand sidebar. From this screen you can manage team members, alerting, and your subscription settings. You can also view your organization's utilization of Prismatic resources.
Your organization's logo can be changed from the Theme tab. Logos are cropped and resized to 512 x 512 pixels, and must be an image. Transparent square PNG images tend to look the best.
To rename your organization, use the prism organization:update
subcommand:
prism organization:update --name "New Organization Name"
To update your organization's name programmatically, use the updateOrganization mutation:
mutation {
updateOrganization(input: { name: "New Organization Name" }) {
organization {
id
}
}
}
Deleting your organization
You can delete your organization from the Subscription tab within organization Settings. Note that deleting your organization is permanent.