Delete a file

post

http://<SDWAN_TENANT_IP>/v1/admin/manage_appliance/delete_files/deleteFile

Request

There are no request parameters for this operation.

Supported Media Types
Request Body - application/json ()
A JSON object containing the file name to be deleted, path, and timestamp.
Root Schema : schema
Type: object
Show Source
Example:
{
    "deletefile":"APN_db.log",
    "path":"/home/talariuser/log",
    "timestamp":"<timestamp>"
}
Back to Top

Response

Supported Media Types

200 Response

Result OK
Body ()
Root Schema : schema
Type: object
Show Source
Example:
{
    "status":"success",
    "data":"deleted file: /home/talariuser/log/APN_db.log"
}

401 Response

Not Logged into the SDWAN-Edge device
Body ()
Root Schema : 401NotLoggedin
Type: object
Show Source

403 Response

Insufficient Userlevel
Body ()
Root Schema : 403InsufficientUserLevel
Type: object
Show Source

405 Response

Invalid request method
Body ()
Root Schema : 405ExpectedPost
Type: object
Show Source
Back to Top

Examples

Example of Accessing the API with cURL

The following example shows how to delete a file by submitting a POST request on the REST resource using cURL. If the request requires a timestamp, use the timestamp from the response of the /login API. For more information about cURL, see Use cURL.

curl -X POST \
    -b cookies.txt \
    -d@request.json \
    --header "Content-Type: application/json" \
    "https://$IPADDR/v1/admin/manage_appliance/delete_files/deleteFile"

The following shows an example of the contents of the request.json file sent as the request body.

{
  "deletefile":"APN_db.log",
  "path":"/home/talariuser/log",
  "timestamp":<timestamp>
}

Example of the Response Body

The following example shows the contents of the response body in JSON format.

{
  "data": "deleted file: /home/talariuser/log/APN_db.log",
  "status": "success"
}
Back to Top