Swift / Support API / Delete SLA Policy
Back to Collection Items
func chilkatTest() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = CkoHttp()
var success: Bool
http.BasicAuth = true
http.Login = "login"
http.Password = "password"
var resp: CkoHttpResponse? = http.QuickRequest("DELETE", url: "https://example.zendesk.com/api/v2/slas/policies/:sla_policy_id")
if http.LastMethodSuccess == false {
print("\(http.LastErrorText)")
return
}
print("\(resp!.StatusCode.intValue)")
print("\(resp!.BodyStr)")
resp = nil
}
Curl Command
curl -u login:password -X DELETE
https://example.zendesk.com/api/v2/slas/policies/:sla_policy_id
Postman Collection Item JSON
{
"name": "Delete SLA Policy",
"request": {
"method": "DELETE",
"header": [
],
"url": {
"raw": "{{baseUrl}}/api/v2/slas/policies/:sla_policy_id",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v2",
"slas",
"policies",
":sla_policy_id"
],
"variable": [
{
"key": "sla_policy_id",
"value": "<integer>"
}
]
},
"description": "#### Availability\n\n* Accounts on the Support Professional or Suite Growth plan or above\n\n#### Allowed For\n\n* Admins\n"
},
"response": [
{
"name": "No Content response",
"originalRequest": {
"method": "DELETE",
"header": [
{
"description": "Added as a part of security scheme: basic",
"key": "Authorization",
"value": "Basic <credentials>"
}
],
"url": {
"raw": "{{baseUrl}}/api/v2/slas/policies/:sla_policy_id",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v2",
"slas",
"policies",
":sla_policy_id"
],
"variable": [
{
"key": "sla_policy_id"
}
]
}
},
"status": "No Content",
"code": 204,
"_postman_previewlanguage": "text",
"header": [
],
"cookie": [
],
"body": null
}
]
}