Skip to content
On this page

Delete a file

Endpoint

POST /v1/destroy/deletefile&filepath={filepath}

Deletes a given file


Path Parameters


filepath REQUIRED no type

Path of a file

Responses

json
{
   "name":{
      "type":"string",
   },
   "numberOfSteps":{
      "type":"uint16",
   },
   "executions":{
      "type":"map",
      "items":{
         "key":{
            "type":"string",
         },
         "value":{
            "type":"object",
            "properties":{
               "name":{
                  "type":"string"
               },
               "startTime":{
                  "type":"uint64"
               },
               "endTime":{
                  "type":"uint64"
               },
               "exitStatus":{
                  "type":"uint8"
               },
               "stdin":{
                  "type":"string"
               },
               "stdout":{
                  "type":"string"
               },
               "stderr":{
                  "type":"string"
               },
            }
         }
      }
   },
   "exitStatus":{
      "type":"uint8",
   },
   "startTime":{
      "type":"uint64",
   },
   "endTime":{
      "type":"uint64",
   },
}