Modifying Your Personal Information and Password

You can modify the personal information and the password associated with your account, except for the account ID.

You can only modify the password associated with your account on Cockpit v2.

If you are an EIM user, you can create your own password using Cockpit v2. For more information, see Creating a Password as an EIM User.

Cockpit v2

Modifying Your Personal Information Using Cockpit v2

  1. In the top right corner, click your initials.
    A drop-down menu appears.

  2. Click IconMySpace Personal Space.
    Your account information appears.

  3. To modify your personal information, click IconEdit Edit.
    The EDIT PERSONAL INFORMATION panel appears.

  4. Type your new information in the corresponding text fields.

  5. Click Save.
    Your personal information is updated.

Modifying Your Password Using Cockpit v2

  1. In the top right corner, click your initials.
    A drop-down menu appears.

  2. Click IconUserSecurity Authentication Parameters.
    Your account management page appears.

  3. In the Password subsection, click Update.
    The Update password page appears.

  4. In the Password field, type in your current password.
    Click Log in.

  5. In the New password field, type in your new password.

  6. In the New password confirmation field, type your new password again.

  7. (optional) Check the Disconnect from other devices box.

  8. Click Update.
    Your password is updated.

OSC CLI

Modifying Your Personal Information Using OSC CLI

The UpdateAccount command updates the account information for the account that sends the request.

Request sample
$ osc-cli api UpdateAccount --profile "default" \
    --AdditionalEmails '["another@example.com", "yet.another@example.com"]'

This command contains the following attributes that you need to specify:

  • AdditionalEmails: (optional) One or more additional email addresses for the account. These addresses are used for notifications only. If you already have a list of additional emails registered, you cannot add to it, only replace it. To remove all registered additional emails, specify an empty list.

  • City: (optional) The new city of the account owner.

  • CompanyName: (optional) The new name of the company for the account.

  • Country: (optional) The new country of the account owner.

  • DryRun: (optional) If true, checks whether you have the required permissions to perform the action.

  • Email: (optional) The main email address for the account. This address is used for your credentials and notifications.

  • FirstName: (optional) The new first name of the account owner.

  • JobTitle: (optional) The new job title of the account owner.

  • LastName: (optional) The new last name of the account owner.

  • MobileNumber: (optional) The new mobile phone number of the account owner.

  • PhoneNumber: (optional) The new landline phone number of the account owner.

  • StateProvince: (optional) The new state/province of the account owner.

  • VatNumber: (optional) The new value added tax (VAT) number for the account.

  • ZipCode: (optional) The new ZIP code of the city.

The UpdateAccount command returns the following elements:

  • Account: Information about the account.

  • ResponseContext: Information about the context of the response.

Result sample
{
  "ResponseContext": {
    "RequestId": "0475ca1e-d0c5-441d-712a-da55a4175157"
  },
  "Account": {
    "ZipCode": "92210",
    "CompanyName": "EXAMPLE SAS",
    "FirstName": "JEAN",
    "AdditionalEmails": [
      "another@example.com",
      "yet.another@example.com"
    ],
    "City": "SAINT-CLOUD",
    "Country": "FRANCE",
    "LastName": "DUPONT",
    "AccountId": "123456789012",
    "CustomerId": "87654321",
    "Email": "example@example.com"
  }
}

Related Pages

Corresponding API Methods