How to Update an Organization Name

Updated on 08 April, 2026

Update the display name of an existing organization on Vultr. Modify organizational details through the Vultr IAM API or the Vultr Console interface.


Updating an organization name changes the display name associated with your organization across the Vultr platform. This can be useful when your team or company undergoes rebranding or when you need to distinguish between multiple organizations on your account.

This guide explains how to update the name of an existing organization using the Vultr Console or the Vultr API.

  • Vultr Console
  • Vultr API
  1. Log in to the Vultr Console.

  2. Click the organization name in the top navigation bar.

  3. Click Manage Organization.

  4. On the Settings tab, click the Edit icon next to the organization name.

  5. In the Edit Organization panel, update the Name field with the new organization name.

  6. Click Save Changes.

    The organization name is updated across the Vultr Console.

  1. Send a GET request to the List Organizations endpoint to retrieve all organizations associated with your account.

    console
    $ curl "https://api.vultr.com/v2/organizations" \
        -X GET \
        -H "Authorization: Bearer ${VULTR_API_KEY}"
    

    Note the id of the organization you want to rename.

  2. Send a GET request to the Read Organization endpoint to retrieve the current organization details. Replace {organization-id} with the id you retrieved in the previous step.

    console
    $ curl "https://api.vultr.com/v2/organizations/{organization-id}" \
        -X GET \
        -H "Authorization: Bearer ${VULTR_API_KEY}"
    
  3. Send a PUT request to the Update Organization endpoint to change the organization name. Replace NEW-ORGANIZATION-NAME with the desired name for your organization.

    console
    $ curl "https://api.vultr.com/v2/organizations/{organization-id}" \
        -X PUT \
        -H "Authorization: Bearer ${VULTR_API_KEY}" \
        -H "Content-Type: application/json" \
        -d '{
            "name": "NEW-ORGANIZATION-NAME"
        }'
    

    The response confirms the organization name has been updated.

  4. Send a GET request to the Read Organization endpoint to retrieve the organization details.

    console
    $ curl "https://api.vultr.com/v2/organizations/{organization-id}" \
        -X GET \
        -H "Authorization: Bearer ${VULTR_API_KEY}"
    

    Verify that the name field reflects the new organization name.

Comments