Apache NiFi Registry REST APIPDF version

3.3.5. Delete bucket flow

DELETE /buckets/{bucketId}/flows/{flowId}

Deletes a flow, including all saved versions of that flow.

Type Name Description Schema

Path

bucketId required

The bucket identifier

string

Path

flowId required

The flow identifier

string

HTTP Code Description Schema

200

successful operation

VersionedFlow

401

Client could not be authenticated.

No Content

403

Client is not authorized to make this request.

No Content

404

The specified resource could not be found.

No Content

409

NiFi Registry was unable to complete the request because it assumes a server state that is not valid.

No Content

  • /

  • application/json

Type Name

apiKey

uthorization

/buckets/string/flows/string
         {
  "link" : {
    "href" : "string",
    "params" : {
      "string" : "string"
    }
  },
  "identifier" : "string",
  "name" : "string",
  "description" : "string",
  "bucketIdentifier" : "string",
  "bucketName" : "string",
  "createdTimestamp" : 0,
  "modifiedTimestamp" : 0,
  "type" : "string",
  "permissions" : {
    "canRead" : true,
    "canWrite" : true,
    "canDelete" : true
  },
  "versionCount" : 0
}