This documentation is currently under development. Certain sections are not yet complete and will be added shortly.
For the complete documentation index, see llms.txt. This page is also available as Markdown.

Comarch

Get the Comarch configuration

get
/api/{tenantId}/admin/extensions/comarch

Returns the current Comarch configuration for this tenant. Secret values are never returned; the response contains hasClientSecret and kafkaConnection.hasPassword so callers can determine whether required secrets are already configured. Returns 404 when Comarch is not configured.

Required scopes
This endpoint requires the following scopes:
Authorizations
OAuth2implicitRequired
Authorization URL:
Path parameters
tenantIdstringRequired
Responses
200

Configuration returned.

Response body for Comarch configuration.

get/api/{tenantId}/admin/extensions/comarch

Set Comarch configuration

put
/api/{tenantId}/admin/extensions/comarch

Creates or updates Comarch configuration. Omit connection.clientSecret to keep the currently stored client secret. When kafkaConnection is provided, omit kafkaConnection.password to keep the currently stored Kafka password. When kafkaConnection is omitted, Kafka configuration is removed. Returns 400 if a required secret is missing and no previously stored value exists.

Required scopes
This endpoint requires the following scopes:
Authorizations
OAuth2implicitRequired
Authorization URL:
Path parameters
tenantIdstringRequired
Body

Request body for setting Comarch configuration.

Responses
204

Configuration saved.

No content

put/api/{tenantId}/admin/extensions/comarch

No content

Delete Comarch configuration

delete
/api/{tenantId}/admin/extensions/comarch

Removes Comarch configuration for the tenant and deletes stored Comarch secrets. This operation is idempotent: it succeeds even when configuration or secrets are already absent.

Required scopes
This endpoint requires the following scopes:
Authorizations
OAuth2implicitRequired
Authorization URL:
Path parameters
tenantIdstringRequired
Responses
204

Configuration deleted.

No content

delete/api/{tenantId}/admin/extensions/comarch

No content

Last updated