lianja / DocuSign Rooms API - v2 / Retrieves the list of valid time zones.
Back to Collection Items
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loHttp = createobject("CkHttp")
// Adds the "Authorization: Bearer {{accessToken}}" header.
loHttp.AuthToken = "{{accessToken}}"
loHttp.SetRequestHeader("Accept","text/plain, application/json, text/json")
loSbResponseBody = createobject("CkStringBuilder")
llSuccess = loHttp.QuickGetSb("https://domain.com/v2/time_zones",loSbResponseBody)
if (llSuccess = .F.) then
? loHttp.LastErrorText
release loHttp
release loSbResponseBody
return
endif
? "Response status code = " + str(loHttp.LastStatus)
? loSbResponseBody.GetAsString()
release loHttp
release loSbResponseBody
Curl Command
curl -X GET
-H "Accept: text/plain, application/json, text/json"
-H "Authorization: Bearer {{accessToken}}"
https://domain.com/v2/time_zones
Postman Collection Item JSON
{
"name": "Retrieves the list of valid time zones.",
"request": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "text/plain, application/json, text/json"
},
{
"key": "Authorization",
"value": "Bearer {{accessToken}}"
}
],
"url": {
"raw": "{{baseUrl}}/v2/time_zones",
"host": [
"{{baseUrl}}"
],
"path": [
"v2",
"time_zones"
]
}
},
"response": [
]
}