3.7.7. Get extension repo extensions


GET /extension-repository/{bucketName}/{groupId}/{artifactId}/{version}/extensions

Description

Gets information about the extensions in the given bucket, group, artifact, and version.

Parameters

Type Name Description Schema

Path

artifactId required

The artifact identifier

string

Path

bucketName required

The bucket name

string

Path

groupId required

The group identifier

string

Path

version required

The version

string

Responses

HTTP Code Description Schema

200

successful operation

< ExtensionMetadata > array

400

NiFi Registry was unable to complete the request because it was invalid. The request should not be retried without modification.

No Content

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

Consumes

  • /

Produces

  • application/json

Security

Type Name

apiKey

Authorization

Example HTTP request

Request path


/extension-repository/string/string/string/string/extensions

Example HTTP response

Response 200


         [ {
  "link" : {
    "href" : "string",
    "params" : {
      "string" : "string"
    }
  },
  "name" : "string",
  "displayName" : "string",
  "type" : "string",
  "description" : "string",
  "deprecationNotice" : {
    "reason" : "string",
    "alternatives" : [ "string" ]
  },
  "tags" : [ "string" ],
  "restricted" : {
    "generalRestrictionExplanation" : "string",
    "restrictions" : [ {
      "requiredPermission" : "string",
      "explanation" : "string"
    } ]
  },
  "providedServiceAPIs" : [ {
    "className" : "string",
    "groupId" : "string",
    "artifactId" : "string",
    "version" : "string"
  } ],
  "bundleInfo" : {
    "bucketId" : "string",
    "bucketName" : "string",
    "bundleId" : "string",
    "bundleType" : "string",
    "groupId" : "string",
    "artifactId" : "string",
    "version" : "string",
    "systemApiVersion" : "string"
  },
  "hasAdditionalDetails" : true,
  "linkDocs" : {
    "href" : "string",
    "params" : {
      "string" : "string"
    }
  }
} ]