Global Oncall Reminder Rules
Get Global Oncall Reminder Rules
required *
The request has succeeded.
The server could not understand the request due to invalid syntax.
Access is unauthorized.
Client error
Access is forbidden.
The server cannot find the requested resource.
The request conflicts with the current state of the server.
Client error
Server error
Server error
Service unavailable.
Server error
GET /v3/global-oncall-reminder-rules?owner_id=text HTTP/1.1
Host: api.squadcast.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"data": {
"id": 1,
"is_enabled": true,
"owner_id": "text",
"rules": [
{
"type": "text",
"time": 1
}
]
}
}The request has succeeded.
The server could not understand the request due to invalid syntax.
Access is unauthorized.
Client error
Access is forbidden.
The server cannot find the requested resource.
The request conflicts with the current state of the server.
Client error
Server error
Server error
Service unavailable.
Server error
POST /v3/global-oncall-reminder-rules HTTP/1.1
Host: api.squadcast.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 72
{
"is_enabled": true,
"owner_id": "text",
"rules": [
{
"type": "text",
"time": 1
}
]
}{
"data": {
"id": 1,
"is_enabled": true,
"owner_id": "text",
"rules": [
{
"type": "text",
"time": 1
}
]
}
}Update Global Oncall Reminder Rules
The request has succeeded.
The server could not understand the request due to invalid syntax.
Access is unauthorized.
Client error
Access is forbidden.
The server cannot find the requested resource.
The request conflicts with the current state of the server.
Client error
Server error
Server error
Service unavailable.
Server error
PUT /v3/global-oncall-reminder-rules?owner_id=text HTTP/1.1
Host: api.squadcast.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 54
{
"is_enabled": true,
"rules": [
{
"type": "text",
"time": 1
}
]
}{
"data": {
"id": 1,
"is_enabled": true,
"owner_id": "text",
"rules": [
{
"type": "text",
"time": 1
}
]
}
}Delete Global Oncall Reminder Rules
There is no content to send for this request, but the headers may be useful.
The server could not understand the request due to invalid syntax.
Access is unauthorized.
Client error
Access is forbidden.
The server cannot find the requested resource.
The request conflicts with the current state of the server.
Client error
Server error
Server error
Service unavailable.
Server error
DELETE /v3/global-oncall-reminder-rules?owner_id=text HTTP/1.1
Host: api.squadcast.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{}Last updated