Powershell / Support API / Delete OLA Policy
Back to Collection Items
Add-Type -Path "C:\chilkat\ChilkatDotNet47-x64\ChilkatDotNet47.dll"
# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
$http = New-Object Chilkat.Http
$http.BasicAuth = $true
$http.Login = "login"
$http.Password = "password"
$resp = $http.QuickRequest("DELETE","https://example.zendesk.com/api/v2/olas/policies/:ola_policy_id")
if ($http.LastMethodSuccess -eq $false) {
$($http.LastErrorText)
exit
}
$($resp.StatusCode)
$($resp.BodyStr)
Curl Command
curl -u login:password -X DELETE
https://example.zendesk.com/api/v2/olas/policies/:ola_policy_id
Postman Collection Item JSON
{
"name": "Delete OLA Policy",
"request": {
"method": "DELETE",
"header": [
],
"url": {
"raw": "{{baseUrl}}/api/v2/olas/policies/:ola_policy_id",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v2",
"olas",
"policies",
":ola_policy_id"
],
"variable": [
{
"key": "ola_policy_id",
"value": "<integer>"
}
]
},
"description": "#### 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/olas/policies/:ola_policy_id",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v2",
"olas",
"policies",
":ola_policy_id"
],
"variable": [
{
"key": "ola_policy_id"
}
]
}
},
"status": "No Content",
"code": 204,
"_postman_previewlanguage": "text",
"header": [
],
"cookie": [
],
"body": null
}
]
}