Update User Webhook
curl --request PUT \
--url https://console.vast.ai/api/v0/webhooks/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"webhook_url": "https://example.com/new-hook",
"event_types": [
"low_disk_space"
],
"name": "Updated name"
}
'import requests
url = "https://console.vast.ai/api/v0/webhooks/{id}"
payload = {
"webhook_url": "https://example.com/new-hook",
"event_types": ["low_disk_space"],
"name": "Updated name"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
webhook_url: 'https://example.com/new-hook',
event_types: ['low_disk_space'],
name: 'Updated name'
})
};
fetch('https://console.vast.ai/api/v0/webhooks/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://console.vast.ai/api/v0/webhooks/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'webhook_url' => 'https://example.com/new-hook',
'event_types' => [
'low_disk_space'
],
'name' => 'Updated name'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://console.vast.ai/api/v0/webhooks/{id}"
payload := strings.NewReader("{\n \"webhook_url\": \"https://example.com/new-hook\",\n \"event_types\": [\n \"low_disk_space\"\n ],\n \"name\": \"Updated name\"\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://console.vast.ai/api/v0/webhooks/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"webhook_url\": \"https://example.com/new-hook\",\n \"event_types\": [\n \"low_disk_space\"\n ],\n \"name\": \"Updated name\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://console.vast.ai/api/v0/webhooks/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"webhook_url\": \"https://example.com/new-hook\",\n \"event_types\": [\n \"low_disk_space\"\n ],\n \"name\": \"Updated name\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"webhook": {
"id": 123,
"user_id": 123,
"name": "<string>",
"webhook_url": "<string>",
"event_types": [
"<string>"
],
"created_at": 123,
"updated_at": 123
},
"enabled_notification_preferences": [
"<string>"
]
}{
"error": "<string>",
"msg": "<string>"
}{
"error": "<string>",
"msg": "<string>"
}Accounts
Update User Webhook
Update an existing webhook for the authenticated user, changing its URL, event subscriptions, or display name.
PUT
/
api
/
v0
/
webhooks
/
{id}
Update User Webhook
curl --request PUT \
--url https://console.vast.ai/api/v0/webhooks/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"webhook_url": "https://example.com/new-hook",
"event_types": [
"low_disk_space"
],
"name": "Updated name"
}
'import requests
url = "https://console.vast.ai/api/v0/webhooks/{id}"
payload = {
"webhook_url": "https://example.com/new-hook",
"event_types": ["low_disk_space"],
"name": "Updated name"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
webhook_url: 'https://example.com/new-hook',
event_types: ['low_disk_space'],
name: 'Updated name'
})
};
fetch('https://console.vast.ai/api/v0/webhooks/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://console.vast.ai/api/v0/webhooks/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'webhook_url' => 'https://example.com/new-hook',
'event_types' => [
'low_disk_space'
],
'name' => 'Updated name'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://console.vast.ai/api/v0/webhooks/{id}"
payload := strings.NewReader("{\n \"webhook_url\": \"https://example.com/new-hook\",\n \"event_types\": [\n \"low_disk_space\"\n ],\n \"name\": \"Updated name\"\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://console.vast.ai/api/v0/webhooks/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"webhook_url\": \"https://example.com/new-hook\",\n \"event_types\": [\n \"low_disk_space\"\n ],\n \"name\": \"Updated name\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://console.vast.ai/api/v0/webhooks/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"webhook_url\": \"https://example.com/new-hook\",\n \"event_types\": [\n \"low_disk_space\"\n ],\n \"name\": \"Updated name\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"webhook": {
"id": 123,
"user_id": 123,
"name": "<string>",
"webhook_url": "<string>",
"event_types": [
"<string>"
],
"created_at": 123,
"updated_at": 123
},
"enabled_notification_preferences": [
"<string>"
]
}{
"error": "<string>",
"msg": "<string>"
}{
"error": "<string>",
"msg": "<string>"
}Authorizations
API key must be provided in the Authorization header
Path Parameters
Unique identifier of the webhook to update.
Body
application/json
New HTTPS destination URL for event delivery; must satisfy the same validation rules as creation. Optional if event_types or name is provided.
Example:
"https://example.com/new-hook"
Replacement list of event slug subscriptions; must be non-empty if provided.
Example:
["low_disk_space"]
New optional display label for the webhook (max 120 characters).
Example:
"Updated name"
Response
Success; returns {success: true, webhook: object, enabled_notification_preferences: list}
⌘I