Apache NiFi Registry REST API ReferencePDF version

3.4.4. Get bucket

GET /buckets/{bucketId}

Gets the bucket with the given id.

Type Name Description Schema

Path

bucketId required

The bucket identifier

string

HTTP Code Description Schema

200

successful operation

Bucket

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

  • /

  • application/json

Type Name

apiKey

Authorization

Request path

/buckets/string

Response 200

         {
  "link" : {
    "href" : "string",
    "params" : {
      "string" : "string"
    }
  },
  "identifier" : "string",
  "name" : "string",
  "createdTimestamp" : 0,
  "description" : "string",
  "allowBundleRedeploy" : true,
  "allowPublicRead" : true,
  "permissions" : {
    "canRead" : true,
    "canWrite" : true,
    "canDelete" : true
  },
  "revision" : {
    "clientId" : "string",
    "version" : 0,
    "lastModifier" : "string"
  }
}