application/json
POST
/qs/{id}/change_timezone
cURL (application/json)
curl \
--request POST 'https://my.interserver.net/apiv2/qs/{id}/change_timezone' \
--header "X-API-KEY: $API_KEY" \
--header "Content-Type: application/json" \
--data '{"timezone":"America/New_York"}'
curl \
--request POST 'https://my.interserver.net/apiv2/qs/{id}/change_timezone' \
--header "X-API-KEY: $API_KEY" \
--header "Content-Type: multipart/form-data" \
--form "timezone=America/New_York"
Request examples
{
"timezone": "America/New_York"
}
Response examples (200)
{
"text": "Action has been sent to the server. Please allow up to 2 minutes for action to be completed.",
"queueId": 14670065
}
Response examples (401)
{
"code": "string",
"message": "string"
}