DELETE
/
o
/
{organisation_id}
/
connectors
/
{connector_id}
/
versions
/
{version}
/
definitions

Authorizations

Authorization
string
headerrequired

Bearer token authentication used by the Versori Platform. External consumers must provide an API key, however internal consumers must provide a JWT id_token issued by our IdP.

Path Parameters

organisation_id
string
required
connector_id
string
required

ID is the unique identifier of the Connector.

version
string
required

Version is the version name of the Connector to retrieve. The reserved names "latest" and "default" may be used to retrieve the latest version or the default version respectively.

Query Parameters

force
boolean

Force deletes the specified Definitions, even if they are referenced by other Definitions. This will trigger validation errors for any Definitions that reference the deleted Definitions.

Body

application/json

DefinitionsDelete is the payload used to delete existing Definitions.

The ids and names fields are joined and all Definitions which match either the ID or name will be deleted. However, these properties are mutually exclusive, i.e. you cannot delete the same Definition by both ID and name.

In order to delete all Definitions, the all field must be set to true and the ids and names fields must be omitted.

ids
string[]
names
string[]
all
boolean

All is a flag which indicates that all Definitions should be deleted. This is mutually exclusive with the ids and names fields.