How to Update Vendor Settings

Updated on 05 August, 2026

Update Vultr Marketplace vendor settings using the Vultr Console or Vultr API to manage vendor details and keep your publisher profile information current.


Vendor settings hold the contact information Vultr associates with your vendor account, including your website, X (Twitter) handle, Git URL, and Slack community URL.

This guide explains how to view and update your vendor settings using the Vultr Console or the Vultr API.

  • Vultr Console
  • Vultr API
  1. Click Marketplace in the Vultr Console's left-hand menu.

  2. Click the Vendor Settings button.

  3. Under Update Marketplace Vendor Username, enter a new username and click Update Username.

  4. Under Update Marketplace Vendor Contact, enter any of the following. All fields are optional.

    • Twitter Handle
    • Website
    • Git URL
    • Slack URL
  5. Click Update Contact Information.

  1. Send a GET request to the Get Marketplace Vendor Settings endpoint to retrieve your current vendor settings.

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

    The response contains vendor_name, x_handle, website_url, git_url, and slack_url.

  2. Send a POST request to the Create Marketplace Vendor User endpoint to set your vendor settings for the first time. Replace VENDOR-NAME and the other values with your own.

    console
    $ curl "https://api.vultr.com/v2/marketplace/vendor" \
        -X POST \
        -H "Authorization: Bearer ${VULTR_API_KEY}" \
        -H "Content-Type: application/json" \
        -d '{
            "vendor_name": "VENDOR-NAME",
            "x_handle": "X-HANDLE",
            "website_url": "WEBSITE-URL",
            "git_url": "GIT-URL",
            "slack_url": "SLACK-URL"
        }'
    

    A successful request returns {"message": "Vendor settings created."}.

  3. Send a PATCH request to the same endpoint to update your vendor settings later.

    console
    $ curl "https://api.vultr.com/v2/marketplace/vendor" \
        -X PATCH \
        -H "Authorization: Bearer ${VULTR_API_KEY}" \
        -H "Content-Type: application/json" \
        -d '{
            "vendor_name": "VENDOR-NAME"
        }'
    

    A successful request returns {"message": "Vendor settings updated."}.

Comments