Delete Definitions
DeleteDefinitions deletes the specified Definitions as per the request body.
Authorizations
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
ID is the unique identifier of the Connector.
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 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
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.
All is a flag which indicates that all Definitions should be deleted. This is mutually exclusive with the
ids
and names
fields.