Create Connector Version
CreateConnectorVersion creates a new ConnectorVersion for the specified Connector. The ConnectorVersion will be
created as a draft (i.e. publishedAt will be null
).
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.
Body
ConnectorVersionCreate is the request body for creating a new ConnectorVersion.
Name denotes the actual version value for the Connector. This can be any value but a consistent naming strategy is recommended, such as SemVer, CalVer or an incrementing number. The names "default" and "latest" are reserved words and cannot be used.
FromVersion is the name
of another ConnectorVersion from which this ConnectorVersion should be created.
If this is not provided then the ConnectorVersion will be created from scratch with no child resources
(i.e. Actions, Definitions etc.).
Response
ConnectorVersion represents a version of a Connector.
CreatedAt is the time at which the ConnectorVersion was created.
ID is the unique identifier of the ConnectorVersion, this is typically only used internally and the version
name
is used externally in combination with the Connector id
.
IsDefault denotes whether this is the default version of the Connector.
IsLatest denotes whether this is the latest version of the Connector.
Name denotes the actual version value for the Connector. This can be any value but a consistent naming strategy is recommended, such as SemVer, CalVer or an incrementing number. The names "default" and "latest" are reserved words and cannot be used.
PublishedAt is the time at which the ConnectorVersion was published.
UpdatedAt is the time at which the ConnectorVersion was last updated, including any changes to child resources.
Description allows specifying additional information about the ConnectorVersion, such as what changed since the last version etc.