Update warmup settings
Partially updates the mailbox's warmup config. Only the fields supplied are changed;
omitted fields are left as-is. replyRates is shallow-merged, so supplying only
spam preserves the existing inbox/promotions rates. targetVolume is capped at 50,
and the effective startingVolume may not exceed the effective targetVolume.
This does not re-run the DNS check.
curl -X PATCH "https://api.sendkit.ai/v1/warmup/config/example_string" \
-H "Content-Type: application/json" \
-H "X-Api-Key: YOUR_API_KEY" \
-d '{
"targetVolume": 40
}'
import requests
import json
url = "https://api.sendkit.ai/v1/warmup/config/example_string"
headers = {
"Content-Type": "application/json",
"X-Api-Key": "YOUR_API_KEY"
}
data = {
"targetVolume": 40
}
response = requests.patch(url, headers=headers, json=data)
print(response.json())
const response = await fetch("https://api.sendkit.ai/v1/warmup/config/example_string", {
method: "PATCH",
headers: {
"Content-Type": "application/json",
"X-Api-Key": "YOUR_API_KEY"
},
body: JSON.stringify({
"targetVolume": 40
})
});
const data = await response.json();
console.log(data);
package main
import (
"fmt"
"net/http"
"bytes"
"encoding/json"
)
func main() {
data := []byte(`{
"targetVolume": 40
}`)
req, err := http.NewRequest("PATCH", "https://api.sendkit.ai/v1/warmup/config/example_string", bytes.NewBuffer(data))
if err != nil {
panic(err)
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("X-Api-Key", "YOUR_API_KEY")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
fmt.Println("Response Status:", resp.Status)
}
require 'net/http'
require 'json'
uri = URI('https://api.sendkit.ai/v1/warmup/config/example_string')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(uri)
request['Content-Type'] = 'application/json'
request['X-Api-Key'] = 'YOUR_API_KEY'
request.body = '{
"targetVolume": 40
}'
response = http.request(request)
puts response.body
{
"success": true,
"data": {
"mailboxId": "664a1b2c3d4e5f6a7b8c9d03",
"updated": {
"warmup.config.targetVolume": 40
}
}
}
{
"error": "Bad Request",
"message": "The request contains invalid parameters or malformed data",
"code": 400,
"details": [
{
"field": "email",
"message": "Invalid email format"
}
]
}
{
"error": "Not Found",
"message": "The requested resource was not found",
"code": 404
}
/v1/warmup/config/{mailboxId}Target server for requests. Edit to use your own host.
Platform API key (sk_user_...) or Workspace API key (sk_...)
Mailbox ID
The media type of the request body
Day-1 daily send volume
Volume added each day
Daily volume ceiling (hard-capped at 50)
Reply-rate targets as percentages (0–100).
Request Preview
Response
Response will appear here after sending the request
Authentication
API Key for authentication. Platform API key (sk_user_...) or Workspace API key (sk_...)
Path Parameters
Mailbox ID
Body
Day-1 daily send volume
Volume added each day
Daily volume ceiling (hard-capped at 50)
Reply-rate targets as percentages (0–100).