copyright | lastupdated | keywords | subcollection | ||
---|---|---|---|---|---|
|
2020-06-10 |
enterprise, enterprise settings, manage enterprise, view enterprise, rename enterprise |
account |
{:shortdesc: .shortdesc} {:codeblock: .codeblock} {:important: .important} {:tip: .tip} {:note: .note}
{: #enterprise-settings}
From the dashboard of your {{site.data.keyword.Bluemix}} enterprise, you can view enterprise details, take common actions such as adding accounts and inviting users, and view billing information. You can also rename your enterprise on the dashboard or by using the CLI or API. {:shortdesc}
To manage enterprise settings, you need the Administrator or Editor role on the Enterprise service in the enterprise account. {: tip}
{: #enterprise-manage}
To view your enterprise dashboard, go to Manage > Enterprise in the {{site.data.keyword.Bluemix_notm}} console. The dashboard provides an overview of accounts, users, and subscription credit in your enterprise. The dashboard has quick links so that you can perform the following common actions:
- Add new or existing accounts to your enterprise
- Invite users to the enterprise account
- View and manage subscription credit
Also, you can rename your enterprise by clicking Rename in the Enterprise details section.
{: #enterprise-manage-cli}
-
View enterprise information such as the name, domain, owner, and creation and update dates.
ibmcloud enterprise show
{: codeblock}
-
Rename the enterprise by specifying the new name on the
-n
option in the following command.ibmcloud enterprise update -n NEW_NAME
{:codeblock}
{: #enterprise-manage-api}
You can programmatically update an enterprise by calling the Enterprise Management API as shown in the following sample request. You can update the enterprise name or domain by passing the new values on the API call. For detailed information about the API, see the Enterprise Management API documentation{: external}.
curl -X PATCH \
"https://enterprise.cloud.ibm.com/v1/enterprises/$ENTERPRISE_ID" \
-H "Authorization: $IAM_TOKEN" \
-H 'Content-Type: application/json' \
-d '{
"name": "Brand New Sample Enterprise",
"domain": "new.example.com"
}'