APIs for Provisioning Software and Connectors
You can find the following APIs in the 'Provisioned Software & Connectors' section of the TIBCO FLOGO® Capability APIs page. For instructions on how to access the TIBCO FLOGO® Capability APIs page, see Accessing the API Documentation with Swagger UI.
API for Listing Provisioned Flogo Connectors
Use the GET /v1/dp/connectors API to retrieve a list of all the Flogo connectors provisioned on the data plane.
This API requires no parameters.
| METHOD | Path Parameters |
|---|---|
| GET | None |
API for Uploading a Flogo Extension on Data Plane
Use the POST /v1/dp/extension API to upload a Flogo extension to the data plane.
To upload a Flogo extension, you need the extension .zip file.
| METHOD | Path Parameters |
|---|---|
| POST | None |
In the Request body section, click Choose File, browse to the .zip file, and click Open.
API for Deleting Extension from Data Plane
Use the DELETE /v1/dp/extensions/{extension}/{version} API to delete an extension from data plane.
To delete a Flogo extension, you need the following parameters:
-
Extension Id: The unique ID of the extension you want to delete.
-
Extension Version: The specific version of the extension.
| METHOD | Path Parameters |
|---|---|
| DELETE |
|
API for Deleting Connector from Data Plane
Use the DELETE /v1/dp/connectors/{connector}/{version} API to delete connectors from the data plane.
To delete a connector, you need the following parameters:
-
Connector Id: The unique ID of the connector you want to delete.
-
Connector Version: The specific version of the connector.
| METHOD | Path Parameters |
|---|---|
| DELETE |
|
API for Listing Flogo Versions Provisioned on Data Plane
Use the GET /v1/dp/flogoversions API to retrieve a list of all the TIBCO Flogo versions provisioned on a data plane. This returns the base versions and the list of base image tags.
This API requires no parameters.
| METHOD | Path Parameters |
|---|---|
| GET | None |