DELETE Process File API

DELETE Process File API is used to delete existing process file in the process file library.

Method
URI

DELETE

cdwebconsole/svc/processlibrary

Table 1. Input Parameters
Parameter Name Required/Optional Description Valid values

processFileName

Required

Specifies the fully qualified name of process file

 
The following example shows the Command:
curl -X 'DELETE' \
             'https://172.20.183.89:9443/cdwebconsole/svc/processlibrary' \
             -H 'Authorization: eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbmlzdHJhdG9yOjE3Mi4yMC4xODYuMjAzOjEzNjM6ZDc1Y2QxMmItZTVjZi00MmY1LWI4NGItZWQ4MzRiOTYyNjlhIiwiZXhwIjoxNzE1MTU2MjYxfQ.d9KzUxlQfldKhi9pHjPN_cEHjyNmU4mFXklCMEuHWOhiFbufcZEJHfpjzghUIpNp3yv_mc24c-hV_RMy56fDew' \
         -H 'Content-Type: application/json' \
         -H 'X-XSRF-TOKEN: cc7f954d-303f-4985-9a76-b1e365319bf1' \
         -d '{"processFileName":"Sample.cdp"}'
The following example shows the Sample HTTP User Request:
{
 "processFileName": "Sample.cdp"
}
The following example shows the Sample Response:
[
  {
    "messageCode": 200,
    "message": "Process File has been deleted successfully "
  }
]