Chilkat Online Tools

TCL / Squadcast API V3 / Update On-call Event

Back to Collection Items

load ./chilkat.dll

# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.

set http [new_CkHttp]

# Use this online tool to generate code from sample JSON: Generate Code to Create JSON

# The following JSON is sent in the request body.

# {
#   "name": "SRE shift 1",
#   "update_type": 1,
#   "start_time": "2020-01-10T18:30:00.000Z",
#   "end_time": "2020-01-10T18:30:00.000Z",
#   "rotation_sets": [
#     {
#       "user_ids": [
#         "5d81d9187000fb6b9def7e31"
#       ],
#       "squad_ids": [
#       ]
#     },
#     {
#       "user_ids": [
#         "5d90cc3a4d031497494f07e6"
#       ],
#       "squad_ids": [
#       ]
#     }
#   ],
#   "config": {
#     "timezone": {
#       "name": "IST",
#       "offset": -330
#     },
#     "is_forever": true,
#     "until": "2020-01-09T14:38:06.658Z",
#     "rotate": true,
#     "repeat": true,
#     "rotation_frequency": 1,
#     "repetition": {
#       "frequency": 1,
#       "repeats_on": [
#         0,
#         6
#       ],
#       "type": "week"
#     }
#   }
# }

set json [new_CkJsonObject]

CkJsonObject_UpdateString $json "name" "SRE shift 1"
CkJsonObject_UpdateInt $json "update_type" 1
CkJsonObject_UpdateString $json "start_time" "2020-01-10T18:30:00.000Z"
CkJsonObject_UpdateString $json "end_time" "2020-01-10T18:30:00.000Z"
CkJsonObject_UpdateString $json "rotation_sets[0].user_ids[0]" "5d81d9187000fb6b9def7e31"
CkJsonObject_UpdateNewArray $json "rotation_sets[0].squad_ids"
CkJsonObject_UpdateString $json "rotation_sets[1].user_ids[0]" "5d90cc3a4d031497494f07e6"
CkJsonObject_UpdateNewArray $json "rotation_sets[1].squad_ids"
CkJsonObject_UpdateString $json "config.timezone.name" "IST"
CkJsonObject_UpdateInt $json "config.timezone.offset" -330
CkJsonObject_UpdateBool $json "config.is_forever" 1
CkJsonObject_UpdateString $json "config.until" "2020-01-09T14:38:06.658Z"
CkJsonObject_UpdateBool $json "config.rotate" 1
CkJsonObject_UpdateBool $json "config.repeat" 1
CkJsonObject_UpdateInt $json "config.rotation_frequency" 1
CkJsonObject_UpdateInt $json "config.repetition.frequency" 1
CkJsonObject_UpdateInt $json "config.repetition.repeats_on[0]" 0
CkJsonObject_UpdateInt $json "config.repetition.repeats_on[1]" 6
CkJsonObject_UpdateString $json "config.repetition.type" "week"

# Adds the "Authorization: Bearer <access_token>" header.
CkHttp_put_AuthToken $http "<access_token>"

set sbRequestBody [new_CkStringBuilder]

CkJsonObject_EmitSb $json $sbRequestBody

# resp is a CkHttpResponse
set resp [CkHttp_PTextSb $http "PUT" "https://api.squadcast.com/v3/schedules/:schedulesID/events/:eventID" $sbRequestBody "utf-8" "application/json" 0 0]
if {[CkHttp_get_LastMethodSuccess $http] == 0} then {
    puts [CkHttp_lastErrorText $http]
    delete_CkHttp $http
    delete_CkJsonObject $json
    delete_CkStringBuilder $sbRequestBody
    exit
}

set sbResponseBody [new_CkStringBuilder]

CkHttpResponse_GetBodySb $resp $sbResponseBody

set jResp [new_CkJsonObject]

CkJsonObject_LoadSb $jResp $sbResponseBody
CkJsonObject_put_EmitCompact $jResp 0

puts "Response Body:"
puts [CkJsonObject_emit $jResp]

set respStatusCode [CkHttpResponse_get_StatusCode $resp]
puts "Response Status Code = $respStatusCode"
if {$respStatusCode >= 400} then {
    puts "Response Header:"
    puts [CkHttpResponse_header $resp]
    puts "Failed."
    delete_CkHttpResponse $resp

    delete_CkHttp $http
    delete_CkJsonObject $json
    delete_CkStringBuilder $sbRequestBody
    delete_CkStringBuilder $sbResponseBody
    delete_CkJsonObject $jResp
    exit
}

delete_CkHttpResponse $resp

# Sample JSON response:
# (Sample code for parsing the JSON response is shown below)

# {
#   "data": [
#     {
#       "id": "5ecf89b4ebddeae2907cd424",
#       "start_time": "2020-01-10T18:30:00Z",
#       "end_time": "2020-01-10T18:30:00Z",
#       "name": "SRE shift 1",
#       "user_ids": [
#         "5d81d9187000fb6b9def7e31"
#       ],
#       "series_id": "5ecf89b4ebddeae2907cd423",
#       "squad_ids": [
#       ],
#       "is_override": false,
#       "schedule_id": "5ecf7176f92f2e731262b852",
#       "calendar": {
#         "id": "5ecf7176f92f2e731262b852",
#         "name": "Weekly schedule",
#         "slug": "weekly-schedule"
#       }
#     }
#   ]
# }

# Sample code for parsing the JSON response...
# Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code

set i 0
set count_i [CkJsonObject_SizeOfArray $jResp "data"]
while {$i < $count_i} {
    CkJsonObject_put_I $jResp $i
    set id [CkJsonObject_stringOf $jResp "data[i].id"]
    set start_time [CkJsonObject_stringOf $jResp "data[i].start_time"]
    set end_time [CkJsonObject_stringOf $jResp "data[i].end_time"]
    set name [CkJsonObject_stringOf $jResp "data[i].name"]
    set series_id [CkJsonObject_stringOf $jResp "data[i].series_id"]
    set is_override [CkJsonObject_BoolOf $jResp "data[i].is_override"]
    set schedule_id [CkJsonObject_stringOf $jResp "data[i].schedule_id"]
    set Id [CkJsonObject_stringOf $jResp "data[i].calendar.id"]
    set Name [CkJsonObject_stringOf $jResp "data[i].calendar.name"]
    set Slug [CkJsonObject_stringOf $jResp "data[i].calendar.slug"]
    set j 0
    set count_j [CkJsonObject_SizeOfArray $jResp "data[i].user_ids"]
    while {$j < $count_j} {
        CkJsonObject_put_J $jResp $j
        set strVal [CkJsonObject_stringOf $jResp "data[i].user_ids[j]"]
        set j [expr $j + 1]
    }
    set j 0
    set count_j [CkJsonObject_SizeOfArray $jResp "data[i].squad_ids"]
    while {$j < $count_j} {
        CkJsonObject_put_J $jResp $j
        set j [expr $j + 1]
    }
    set i [expr $i + 1]
}

delete_CkHttp $http
delete_CkJsonObject $json
delete_CkStringBuilder $sbRequestBody
delete_CkStringBuilder $sbResponseBody
delete_CkJsonObject $jResp

Curl Command

curl -X PUT
	-H "Authorization: Bearer <access_token>"
	-d '{
    "name": "SRE shift 1",
	"update_type":1,
    "start_time": "2020-01-10T18:30:00.000Z",
    "end_time": "2020-01-10T18:30:00.000Z",
    "rotation_sets": [
        {
            "user_ids": ["5d81d9187000fb6b9def7e31"],
            "squad_ids": []
        },
        {
            "user_ids": ["5d90cc3a4d031497494f07e6"],
            "squad_ids": []
        }
    ],
    "config": {
        "timezone": {
        	"name": "IST", 
        	"offset": -330
        },
        "is_forever": true,
        "until": "2020-01-09T14:38:06.658Z",
        "rotate": true,
        "repeat": true,
        "rotation_frequency": 1,
        "repetition": {
            "frequency": 1,
            "repeats_on": [
                0,
                6
            ],
            "type": "week"
        }
    }
}'
https://api.squadcast.com/v3/schedules/:schedulesID/events/:eventID

Postman Collection Item JSON

{
  "name": "Update On-call Event",
  "request": {
    "method": "PUT",
    "header": [
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"name\": \"SRE shift 1\",\n\t\"update_type\":1,\n    \"start_time\": \"2020-01-10T18:30:00.000Z\",\n    \"end_time\": \"2020-01-10T18:30:00.000Z\",\n    \"rotation_sets\": [\n        {\n            \"user_ids\": [\"5d81d9187000fb6b9def7e31\"],\n            \"squad_ids\": []\n        },\n        {\n            \"user_ids\": [\"5d90cc3a4d031497494f07e6\"],\n            \"squad_ids\": []\n        }\n    ],\n    \"config\": {\n        \"timezone\": {\n        \t\"name\": \"IST\", \n        \t\"offset\": -330\n        },\n        \"is_forever\": true,\n        \"until\": \"2020-01-09T14:38:06.658Z\",\n        \"rotate\": true,\n        \"repeat\": true,\n        \"rotation_frequency\": 1,\n        \"repetition\": {\n            \"frequency\": 1,\n            \"repeats_on\": [\n                0,\n                6\n            ],\n            \"type\": \"week\"\n        }\n    }\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{baseUrl}}/schedules/:schedulesID/events/:eventID",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "schedules",
        ":schedulesID",
        "events",
        ":eventID"
      ],
      "variable": [
        {
          "key": "schedulesID",
          "value": "5ecf7176f92f2e731262b852",
          "type": "string"
        },
        {
          "key": "eventID",
          "value": "5ecf89b4ebddeae2907cd424",
          "type": "string"
        }
      ]
    },
    "description": "This endpoint is used to update the on-call rotation(event) for the schedule.\nRequires `access_token` as a `Bearer {{token}}` in the `Authorization` header with `schedule-write` scope.\n\nUpdate Type value representations:\n```\nupdate_type:\n\n1 - Update the current single event\n2 - Update the current event and all the following events\n```\n\n\nRepresentation of Weekly Repetition:\n```\n0 - Sunday\n1 - Monday\n2 - Tuesday\n3 - Wednesday\n4 - Thursday\n5 - Friday\n6 - Saturday\n```"
  },
  "response": [
    {
      "name": "200 OK",
      "originalRequest": {
        "method": "PUT",
        "header": [
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n\t\"update_type\":1,\n    \"start_time\": \"2020-01-10T18:30:00.000Z\",\n    \"end_time\": \"2020-01-10T18:30:00.000Z\",\n    \"rotation_sets\": [\n        {\n            \"user_ids\": [\"5d81d9187000fb6b9def7e31\"],\n            \"squad_ids\": []\n        },\n        {\n            \"user_ids\": [\"5d90cc3a4d031497494f07e6\"],\n            \"squad_ids\": []\n        }\n    ],\n    \"config\": {\n        \"timezone\": {\n        \t\"name\": \"IST\", \n        \t\"offset\": -330\n        },\n        \"is_forever\": true,\n        \"until\": \"2020-01-09T14:38:06.658Z\",\n        \"rotate\": true,\n        \"repeat\": true,\n        \"rotation_frequency\": 1,\n        \"repetition\": {\n            \"frequency\": 1,\n            \"repeats_on\": [\n                0,\n                6\n            ],\n            \"type\": \"week\"\n        }\n    }\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/schedules/:schedulesID/events/:eventID",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "schedules",
            ":schedulesID",
            "events",
            ":eventID"
          ],
          "variable": [
            {
              "key": "schedulesID",
              "value": "5ecf7176f92f2e731262b852"
            },
            {
              "key": "eventID",
              "value": "5ecf89b4ebddeae2907cd424"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        },
        {
          "key": "Vary",
          "value": "Origin"
        },
        {
          "key": "Date",
          "value": "Thu, 28 May 2020 10:24:09 GMT"
        },
        {
          "key": "Content-Length",
          "value": "406"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"data\": [\n        {\n            \"id\": \"5ecf89b4ebddeae2907cd424\",\n            \"start_time\": \"2020-01-10T18:30:00Z\",\n            \"end_time\": \"2020-01-10T18:30:00Z\",\n            \"name\": \"SRE shift 1\",\n            \"user_ids\": [\n                \"5d81d9187000fb6b9def7e31\"\n            ],\n            \"series_id\": \"5ecf89b4ebddeae2907cd423\",\n            \"squad_ids\": [],\n            \"is_override\": false,\n            \"schedule_id\": \"5ecf7176f92f2e731262b852\",\n            \"calendar\": {\n                \"id\": \"5ecf7176f92f2e731262b852\",\n                \"name\": \"Weekly schedule\",\n                \"slug\": \"weekly-schedule\"\n            }\n        }\n    ]\n}"
    }
  ]
}