phpExt / Support API / Delete Ticket Field Option
Back to Collection Items
<?php
include("chilkat.php");
// Use "chilkat_9_5_0.php" for versions of Chilkat < 10.0.0
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
$http = new CkHttp();
$http->put_BasicAuth(true);
$http->put_Login('login');
$http->put_Password('password');
// resp is a CkHttpResponse
$resp = $http->QuickRequest('DELETE','https://example.zendesk.com/api/v2/ticket_fields/:ticket_field_id/options/:ticket_field_option_id');
if ($http->get_LastMethodSuccess() == false) {
print $http->lastErrorText() . "\n";
exit;
}
print $resp->get_StatusCode() . "\n";
print $resp->bodyStr() . "\n";
?>
Curl Command
curl -u login:password -X DELETE
https://example.zendesk.com/api/v2/ticket_fields/:ticket_field_id/options/:ticket_field_option_id
Postman Collection Item JSON
{
"name": "Delete Ticket Field Option",
"request": {
"method": "DELETE",
"header": [
],
"url": {
"raw": "{{baseUrl}}/api/v2/ticket_fields/:ticket_field_id/options/:ticket_field_option_id",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v2",
"ticket_fields",
":ticket_field_id",
"options",
":ticket_field_option_id"
],
"variable": [
{
"key": "ticket_field_id",
"value": "<integer>"
},
{
"key": "ticket_field_option_id",
"value": "<integer>"
}
]
},
"description": "#### Allowed for\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/ticket_fields/:ticket_field_id/options/:ticket_field_option_id",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v2",
"ticket_fields",
":ticket_field_id",
"options",
":ticket_field_option_id"
],
"variable": [
{
"key": "ticket_field_id"
},
{
"key": "ticket_field_option_id"
}
]
}
},
"status": "No Content",
"code": 204,
"_postman_previewlanguage": "text",
"header": [
],
"cookie": [
],
"body": null
}
]
}