Update a Vultr Marketplace app's support contact using the Vultr Console or Vultr API so customers can reach your team through email, website, or docs links.
The support contact fields give customers a way to reach you, including your support email, support URL, website URL, and links to your social media accounts.
This guide explains how to update the support contact using the Vultr Console or the Vultr API.
Click Marketplace in the Vultr Console's left-hand menu.
Click the application name to open the Edit App screen.
Click the Support Information tab.
Enter the contact information. All fields are optional.
@ prefix is added for you)Click Update App Support Info.
Send a PATCH request to the Update Marketplace App endpoint to set the support and social fields. Replace {app-id} with the app's ID and the values below with your own.
$ curl "https://api.vultr.com/v2/marketplace/apps/{app-id}" \
-X PATCH \
-H "Authorization: Bearer ${VULTR_API_KEY}" \
-H "Content-Type: application/json" \
-d '{
"support_email": "SUPPORT-EMAIL",
"support_url": "SUPPORT-URL",
"website_url": "WEBSITE-URL",
"x_handle": "X-HANDLE",
"slack_url": "SLACK-URL",
"stackoverflow_url": "STACKOVERFLOW-URL",
"discord_invite_url": "DISCORD-INVITE-URL"
}'
The response contains the updated app object.