Delete notification template

delete

/iam/governance/selfservice/api/v1/notification/template/{id}

Deletes a particular notification template with the specified id.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

successful operation.
Body ()
Root Schema : ReturnedStatus
Type: object
Show Source

400 Response

Invalid input.
Back to Top

Examples

The following example shows how to retrieve the summary of all job executions within a time range by submitting the GET request using cURL. The information shown here is against a pseudo system and serves as a prototype.

cURL Example

curl -i -X DELETE -u username:password \
--header 'X-Requested-By: <anyvalue>'
 \'http://pseudo.com:14000/iam/governance/selfservice/api/v1/notification/template/41'

Example of Response Body

The following example shows the JSON response for a reqeust to retrieve the summary of all job executions within a time range:

{
   "status":0
}
Back to Top