Update schedule
curl --request PATCH \
--url https://sandbox.blitzboardstats.com/api/v1/blitz-api/schedules/{scheduleId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"eventTitle": "anim iure nam tempor",
"eventType": "game",
"startDate": "2026-09-17T21:00:00.000Z",
"endDate": "2026-09-17T21:51:00.000Z",
"teamTwoName": "mona hurley",
"duration": 50,
"matchupFormat": "quarters",
"teamFormat": "7v7",
"practiceNote": "n,mn,mn",
"isTestGame": false,
"fieldSizeInYard": 60,
"enableYardage": true,
"isScrimmage": true,
"allowZeroYardStart": false,
"overtimeType": "limited",
"overtimeDuration": 5,
"teamId": "6917707a0e8f6ee5171235c2"
}
'import requests
url = "https://sandbox.blitzboardstats.com/api/v1/blitz-api/schedules/{scheduleId}"
payload = {
"eventTitle": "anim iure nam tempor",
"eventType": "game",
"startDate": "2026-09-17T21:00:00.000Z",
"endDate": "2026-09-17T21:51:00.000Z",
"teamTwoName": "mona hurley",
"duration": 50,
"matchupFormat": "quarters",
"teamFormat": "7v7",
"practiceNote": "n,mn,mn",
"isTestGame": False,
"fieldSizeInYard": 60,
"enableYardage": True,
"isScrimmage": True,
"allowZeroYardStart": False,
"overtimeType": "limited",
"overtimeDuration": 5,
"teamId": "6917707a0e8f6ee5171235c2"
}
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({
eventTitle: 'anim iure nam tempor',
eventType: 'game',
startDate: '2026-09-17T21:00:00.000Z',
endDate: '2026-09-17T21:51:00.000Z',
teamTwoName: 'mona hurley',
duration: 50,
matchupFormat: 'quarters',
teamFormat: '7v7',
practiceNote: 'n,mn,mn',
isTestGame: false,
fieldSizeInYard: 60,
enableYardage: true,
isScrimmage: true,
allowZeroYardStart: false,
overtimeType: 'limited',
overtimeDuration: 5,
teamId: '6917707a0e8f6ee5171235c2'
})
};
fetch('https://sandbox.blitzboardstats.com/api/v1/blitz-api/schedules/{scheduleId}', 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://sandbox.blitzboardstats.com/api/v1/blitz-api/schedules/{scheduleId}",
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([
'eventTitle' => 'anim iure nam tempor',
'eventType' => 'game',
'startDate' => '2026-09-17T21:00:00.000Z',
'endDate' => '2026-09-17T21:51:00.000Z',
'teamTwoName' => 'mona hurley',
'duration' => 50,
'matchupFormat' => 'quarters',
'teamFormat' => '7v7',
'practiceNote' => 'n,mn,mn',
'isTestGame' => false,
'fieldSizeInYard' => 60,
'enableYardage' => true,
'isScrimmage' => true,
'allowZeroYardStart' => false,
'overtimeType' => 'limited',
'overtimeDuration' => 5,
'teamId' => '6917707a0e8f6ee5171235c2'
]),
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://sandbox.blitzboardstats.com/api/v1/blitz-api/schedules/{scheduleId}"
payload := strings.NewReader("{\n \"eventTitle\": \"anim iure nam tempor\",\n \"eventType\": \"game\",\n \"startDate\": \"2026-09-17T21:00:00.000Z\",\n \"endDate\": \"2026-09-17T21:51:00.000Z\",\n \"teamTwoName\": \"mona hurley\",\n \"duration\": 50,\n \"matchupFormat\": \"quarters\",\n \"teamFormat\": \"7v7\",\n \"practiceNote\": \"n,mn,mn\",\n \"isTestGame\": false,\n \"fieldSizeInYard\": 60,\n \"enableYardage\": true,\n \"isScrimmage\": true,\n \"allowZeroYardStart\": false,\n \"overtimeType\": \"limited\",\n \"overtimeDuration\": 5,\n \"teamId\": \"6917707a0e8f6ee5171235c2\"\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://sandbox.blitzboardstats.com/api/v1/blitz-api/schedules/{scheduleId}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"eventTitle\": \"anim iure nam tempor\",\n \"eventType\": \"game\",\n \"startDate\": \"2026-09-17T21:00:00.000Z\",\n \"endDate\": \"2026-09-17T21:51:00.000Z\",\n \"teamTwoName\": \"mona hurley\",\n \"duration\": 50,\n \"matchupFormat\": \"quarters\",\n \"teamFormat\": \"7v7\",\n \"practiceNote\": \"n,mn,mn\",\n \"isTestGame\": false,\n \"fieldSizeInYard\": 60,\n \"enableYardage\": true,\n \"isScrimmage\": true,\n \"allowZeroYardStart\": false,\n \"overtimeType\": \"limited\",\n \"overtimeDuration\": 5,\n \"teamId\": \"6917707a0e8f6ee5171235c2\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.blitzboardstats.com/api/v1/blitz-api/schedules/{scheduleId}")
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 \"eventTitle\": \"anim iure nam tempor\",\n \"eventType\": \"game\",\n \"startDate\": \"2026-09-17T21:00:00.000Z\",\n \"endDate\": \"2026-09-17T21:51:00.000Z\",\n \"teamTwoName\": \"mona hurley\",\n \"duration\": 50,\n \"matchupFormat\": \"quarters\",\n \"teamFormat\": \"7v7\",\n \"practiceNote\": \"n,mn,mn\",\n \"isTestGame\": false,\n \"fieldSizeInYard\": 60,\n \"enableYardage\": true,\n \"isScrimmage\": true,\n \"allowZeroYardStart\": false,\n \"overtimeType\": \"limited\",\n \"overtimeDuration\": 5,\n \"teamId\": \"6917707a0e8f6ee5171235c2\"\n}"
response = http.request(request)
puts response.read_body{
"_id": "66f0a1b2c3d4e5f678901456",
"eventType": "game",
"eventTitle": "Falcons vs Guest Team",
"startDate": "2026-10-01",
"endDate": "2026-10-01",
"teamOneId": "66f0a1b2c3d4e5f678901234",
"teamTwoName": "Guest Team",
"createdAt": "2026-09-13T18:00:00.000Z"
}{
"error": 40101,
"message": "Invalid API key",
"timestamp": "2026-09-13T14:45:41.317Z",
"traceId": "req_41f0e6c8a5ea232a"
}{
"error": 40101,
"message": "Invalid API key",
"timestamp": "2026-09-13T14:45:41.317Z",
"traceId": "req_41f0e6c8a5ea232a"
}{
"error": 40101,
"message": "Invalid API key",
"timestamp": "2026-09-13T14:45:41.317Z",
"traceId": "req_41f0e6c8a5ea232a"
}{
"error": 40101,
"message": "Invalid API key",
"timestamp": "2026-09-13T14:45:41.317Z",
"traceId": "req_41f0e6c8a5ea232a"
}Schedules
Update schedule
Update a schedule by scheduleId. Pass teamId in the request body.
WARNING: If you do not send a field on PATCH, we leave the existing value unchanged. We do not apply create defaults.
PATCH
/
v1
/
blitz-api
/
schedules
/
{scheduleId}
Update schedule
curl --request PATCH \
--url https://sandbox.blitzboardstats.com/api/v1/blitz-api/schedules/{scheduleId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"eventTitle": "anim iure nam tempor",
"eventType": "game",
"startDate": "2026-09-17T21:00:00.000Z",
"endDate": "2026-09-17T21:51:00.000Z",
"teamTwoName": "mona hurley",
"duration": 50,
"matchupFormat": "quarters",
"teamFormat": "7v7",
"practiceNote": "n,mn,mn",
"isTestGame": false,
"fieldSizeInYard": 60,
"enableYardage": true,
"isScrimmage": true,
"allowZeroYardStart": false,
"overtimeType": "limited",
"overtimeDuration": 5,
"teamId": "6917707a0e8f6ee5171235c2"
}
'import requests
url = "https://sandbox.blitzboardstats.com/api/v1/blitz-api/schedules/{scheduleId}"
payload = {
"eventTitle": "anim iure nam tempor",
"eventType": "game",
"startDate": "2026-09-17T21:00:00.000Z",
"endDate": "2026-09-17T21:51:00.000Z",
"teamTwoName": "mona hurley",
"duration": 50,
"matchupFormat": "quarters",
"teamFormat": "7v7",
"practiceNote": "n,mn,mn",
"isTestGame": False,
"fieldSizeInYard": 60,
"enableYardage": True,
"isScrimmage": True,
"allowZeroYardStart": False,
"overtimeType": "limited",
"overtimeDuration": 5,
"teamId": "6917707a0e8f6ee5171235c2"
}
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({
eventTitle: 'anim iure nam tempor',
eventType: 'game',
startDate: '2026-09-17T21:00:00.000Z',
endDate: '2026-09-17T21:51:00.000Z',
teamTwoName: 'mona hurley',
duration: 50,
matchupFormat: 'quarters',
teamFormat: '7v7',
practiceNote: 'n,mn,mn',
isTestGame: false,
fieldSizeInYard: 60,
enableYardage: true,
isScrimmage: true,
allowZeroYardStart: false,
overtimeType: 'limited',
overtimeDuration: 5,
teamId: '6917707a0e8f6ee5171235c2'
})
};
fetch('https://sandbox.blitzboardstats.com/api/v1/blitz-api/schedules/{scheduleId}', 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://sandbox.blitzboardstats.com/api/v1/blitz-api/schedules/{scheduleId}",
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([
'eventTitle' => 'anim iure nam tempor',
'eventType' => 'game',
'startDate' => '2026-09-17T21:00:00.000Z',
'endDate' => '2026-09-17T21:51:00.000Z',
'teamTwoName' => 'mona hurley',
'duration' => 50,
'matchupFormat' => 'quarters',
'teamFormat' => '7v7',
'practiceNote' => 'n,mn,mn',
'isTestGame' => false,
'fieldSizeInYard' => 60,
'enableYardage' => true,
'isScrimmage' => true,
'allowZeroYardStart' => false,
'overtimeType' => 'limited',
'overtimeDuration' => 5,
'teamId' => '6917707a0e8f6ee5171235c2'
]),
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://sandbox.blitzboardstats.com/api/v1/blitz-api/schedules/{scheduleId}"
payload := strings.NewReader("{\n \"eventTitle\": \"anim iure nam tempor\",\n \"eventType\": \"game\",\n \"startDate\": \"2026-09-17T21:00:00.000Z\",\n \"endDate\": \"2026-09-17T21:51:00.000Z\",\n \"teamTwoName\": \"mona hurley\",\n \"duration\": 50,\n \"matchupFormat\": \"quarters\",\n \"teamFormat\": \"7v7\",\n \"practiceNote\": \"n,mn,mn\",\n \"isTestGame\": false,\n \"fieldSizeInYard\": 60,\n \"enableYardage\": true,\n \"isScrimmage\": true,\n \"allowZeroYardStart\": false,\n \"overtimeType\": \"limited\",\n \"overtimeDuration\": 5,\n \"teamId\": \"6917707a0e8f6ee5171235c2\"\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://sandbox.blitzboardstats.com/api/v1/blitz-api/schedules/{scheduleId}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"eventTitle\": \"anim iure nam tempor\",\n \"eventType\": \"game\",\n \"startDate\": \"2026-09-17T21:00:00.000Z\",\n \"endDate\": \"2026-09-17T21:51:00.000Z\",\n \"teamTwoName\": \"mona hurley\",\n \"duration\": 50,\n \"matchupFormat\": \"quarters\",\n \"teamFormat\": \"7v7\",\n \"practiceNote\": \"n,mn,mn\",\n \"isTestGame\": false,\n \"fieldSizeInYard\": 60,\n \"enableYardage\": true,\n \"isScrimmage\": true,\n \"allowZeroYardStart\": false,\n \"overtimeType\": \"limited\",\n \"overtimeDuration\": 5,\n \"teamId\": \"6917707a0e8f6ee5171235c2\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.blitzboardstats.com/api/v1/blitz-api/schedules/{scheduleId}")
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 \"eventTitle\": \"anim iure nam tempor\",\n \"eventType\": \"game\",\n \"startDate\": \"2026-09-17T21:00:00.000Z\",\n \"endDate\": \"2026-09-17T21:51:00.000Z\",\n \"teamTwoName\": \"mona hurley\",\n \"duration\": 50,\n \"matchupFormat\": \"quarters\",\n \"teamFormat\": \"7v7\",\n \"practiceNote\": \"n,mn,mn\",\n \"isTestGame\": false,\n \"fieldSizeInYard\": 60,\n \"enableYardage\": true,\n \"isScrimmage\": true,\n \"allowZeroYardStart\": false,\n \"overtimeType\": \"limited\",\n \"overtimeDuration\": 5,\n \"teamId\": \"6917707a0e8f6ee5171235c2\"\n}"
response = http.request(request)
puts response.read_body{
"_id": "66f0a1b2c3d4e5f678901456",
"eventType": "game",
"eventTitle": "Falcons vs Guest Team",
"startDate": "2026-10-01",
"endDate": "2026-10-01",
"teamOneId": "66f0a1b2c3d4e5f678901234",
"teamTwoName": "Guest Team",
"createdAt": "2026-09-13T18:00:00.000Z"
}{
"error": 40101,
"message": "Invalid API key",
"timestamp": "2026-09-13T14:45:41.317Z",
"traceId": "req_41f0e6c8a5ea232a"
}{
"error": 40101,
"message": "Invalid API key",
"timestamp": "2026-09-13T14:45:41.317Z",
"traceId": "req_41f0e6c8a5ea232a"
}{
"error": 40101,
"message": "Invalid API key",
"timestamp": "2026-09-13T14:45:41.317Z",
"traceId": "req_41f0e6c8a5ea232a"
}{
"error": 40101,
"message": "Invalid API key",
"timestamp": "2026-09-13T14:45:41.317Z",
"traceId": "req_41f0e6c8a5ea232a"
}You must send
Body fields you may send:
teamId in the body. For other fields, send only what you want to change.
Update does not fill create defaults.If you do not send a field on
PATCH, we leave the existing value as it is. We do not replace it with create defaults (duration: 30, 7v7, and so on).If you send enableYardage: true, also send fieldSizeInYard.
If you send overtimeType: limited, also send overtimeDuration.eventTitle, eventType, startDate, endDate, teamTwoName, duration, matchupFormat, teamFormat, practiceNote, isTestGame, fieldSizeInYard, enableYardage, isScrimmage, allowZeroYardStart, overtimeType, overtimeDuration, teamId.
Do not send startTime, endTime, or isRecurring — UI-only, not accepted by this API.Authorizations
Public integration API key (bb_live_...). Not a login JWT.
Path Parameters
Schedule document Mongo _id from create or list.
Example:
"507f1f77bcf86cd799439012"
Body
application/json
Team that owns the schedule (required)
Example:
"6917707a0e8f6ee5171235c2"
Example:
"anim iure nam tempor"
Available options:
game, practice Example:
"game"
Example:
"2026-09-17T21:00:00.000Z"
Example:
"2026-09-17T21:51:00.000Z"
Example:
"mona hurley"
Available options:
20, 24, 30, 40, 48, 50, 60 Example:
50
Available options:
halves, quarters, runningClock Example:
"quarters"
Available options:
4v4, 5v5, 6v6, 7v7, 8v8, 9v9, 11v11 Example:
"7v7"
Example:
"n,mn,mn"
Example:
false
Available options:
30, 40, 45, 50, 60, 64, 70, 80, 100 Example:
60
Example:
true
Example:
true
Example:
false
Available options:
limited, unlimited Example:
"limited"
Required range:
x >= 1Example:
5
Response
Schedule updated
The response is of type object.
⌘I
