curl --request PATCH \
--url https://api.signupbreeze.com/v1/slots/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "Grill Master",
"location": "South gate",
"start_time": "11:30",
"end_time": "13:30",
"capacity": 6,
"notify_volunteers": false
}
'import requests
url = "https://api.signupbreeze.com/v1/slots/{id}"
payload = {
"title": "Grill Master",
"location": "South gate",
"start_time": "11:30",
"end_time": "13:30",
"capacity": 6,
"notify_volunteers": False
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
title: 'Grill Master',
location: 'South gate',
start_time: '11:30',
end_time: '13:30',
capacity: 6,
notify_volunteers: false
})
};
fetch('https://api.signupbreeze.com/v1/slots/{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://api.signupbreeze.com/v1/slots/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'title' => 'Grill Master',
'location' => 'South gate',
'start_time' => '11:30',
'end_time' => '13:30',
'capacity' => 6,
'notify_volunteers' => false
]),
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://api.signupbreeze.com/v1/slots/{id}"
payload := strings.NewReader("{\n \"title\": \"Grill Master\",\n \"location\": \"South gate\",\n \"start_time\": \"11:30\",\n \"end_time\": \"13:30\",\n \"capacity\": 6,\n \"notify_volunteers\": false\n}")
req, _ := http.NewRequest("PATCH", 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.patch("https://api.signupbreeze.com/v1/slots/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"title\": \"Grill Master\",\n \"location\": \"South gate\",\n \"start_time\": \"11:30\",\n \"end_time\": \"13:30\",\n \"capacity\": 6,\n \"notify_volunteers\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.signupbreeze.com/v1/slots/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"title\": \"Grill Master\",\n \"location\": \"South gate\",\n \"start_time\": \"11:30\",\n \"end_time\": \"13:30\",\n \"capacity\": 6,\n \"notify_volunteers\": false\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "019ff256-eced-704a-b6bf-3c82e3df05e9",
"event_id": "019ff256-eced-704a-b6bf-3c82e3141004",
"title": "Setup Team",
"location": null,
"is_virtual": false,
"start_time": "2026-10-28T00:14:13+00:00",
"end_time": "2026-10-28T02:14:13+00:00",
"capacity": 10,
"filled": 0,
"remaining": 10,
"created_at": "2026-08-11T19:40:10+00:00",
"updated_at": "2026-08-11T19:40:10+00:00"
}
}{
"message": "Not found."
}Update a shift
Send only the fields you are changing. Changing the time or location emails the
volunteers already signed up; pass notify_volunteers: false to suppress that.
Lowering capacity below the number already signed up does not remove anyone — the
shift simply reports as over-full until someone cancels.
Requires the slots:write scope.
curl --request PATCH \
--url https://api.signupbreeze.com/v1/slots/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "Grill Master",
"location": "South gate",
"start_time": "11:30",
"end_time": "13:30",
"capacity": 6,
"notify_volunteers": false
}
'import requests
url = "https://api.signupbreeze.com/v1/slots/{id}"
payload = {
"title": "Grill Master",
"location": "South gate",
"start_time": "11:30",
"end_time": "13:30",
"capacity": 6,
"notify_volunteers": False
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
title: 'Grill Master',
location: 'South gate',
start_time: '11:30',
end_time: '13:30',
capacity: 6,
notify_volunteers: false
})
};
fetch('https://api.signupbreeze.com/v1/slots/{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://api.signupbreeze.com/v1/slots/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'title' => 'Grill Master',
'location' => 'South gate',
'start_time' => '11:30',
'end_time' => '13:30',
'capacity' => 6,
'notify_volunteers' => false
]),
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://api.signupbreeze.com/v1/slots/{id}"
payload := strings.NewReader("{\n \"title\": \"Grill Master\",\n \"location\": \"South gate\",\n \"start_time\": \"11:30\",\n \"end_time\": \"13:30\",\n \"capacity\": 6,\n \"notify_volunteers\": false\n}")
req, _ := http.NewRequest("PATCH", 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.patch("https://api.signupbreeze.com/v1/slots/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"title\": \"Grill Master\",\n \"location\": \"South gate\",\n \"start_time\": \"11:30\",\n \"end_time\": \"13:30\",\n \"capacity\": 6,\n \"notify_volunteers\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.signupbreeze.com/v1/slots/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"title\": \"Grill Master\",\n \"location\": \"South gate\",\n \"start_time\": \"11:30\",\n \"end_time\": \"13:30\",\n \"capacity\": 6,\n \"notify_volunteers\": false\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "019ff256-eced-704a-b6bf-3c82e3df05e9",
"event_id": "019ff256-eced-704a-b6bf-3c82e3141004",
"title": "Setup Team",
"location": null,
"is_virtual": false,
"start_time": "2026-10-28T00:14:13+00:00",
"end_time": "2026-10-28T02:14:13+00:00",
"capacity": 10,
"filled": 0,
"remaining": 10,
"created_at": "2026-08-11T19:40:10+00:00",
"updated_at": "2026-08-11T19:40:10+00:00"
}
}{
"message": "Not found."
}Authorizations
Create a token under Organization settings → API. Tokens are shown once, on creation. They belong to the organization, not to you, so they keep working if you leave the team. API access is included on every plan; the rate limit depends on the plan.
Body
What the shift is called.
"Grill Master"
Where this shift happens.
"South gate"
Wall-clock start as HH:MM.
"11:30"
Wall-clock end as HH:MM.
"13:30"
How many volunteers are needed.
6
Email volunteers about the change. Defaults to true.
false
Response
Show child attributes
Show child attributes

