Configuration

Operations for managing Ecosystem configurations for a tenant.

Retrieve ecosystem configuration

Retrieves the tenant's ecosystem configuration.

Analytic events

  • ECOSYSTEM_CONFIG_RETRIEVE_START
  • ECOSYSTEM_CONFIG_RETRIEVE_SUCCESS
  • ECOSYSTEM_CONFIG_RETRIEVE_FAIL
Roles: ["admin","dts-consumer"]
SecuritybearerAuth
Responses
200

Ecosystem configuration retrieved

404

Not Found. The specified resource was not found.

500

Internal Server Error. An unexpected error occurred.

get/v1/config/ecosystems
Request samples
Response samples
application/json
{}

Create ecosystem configuration

Creates an ecosystem configuration for the tenant.

Analytic events

  • ECOSYSTEM_CONFIG_CREATE_START
  • ECOSYSTEM_CONFIG_CREATE_SUCCESS
  • ECOSYSTEM_CONFIG_CREATE_FAIL
Roles: ["admin","dts-consumer"]
SecuritybearerAuth
Request
Request Body schema: application/json
required
Array of objects = 1 items
isIssuanceRestricted
boolean

Indicates whether issuance is restricted (true) or not (false).

isVerificationRestricted
boolean

Indicates whether verification is restricted (true) or not (false).

Responses
201

Ecosystem configuration created

400

Bad Request. The request was malformed or missing required parameters.

500

Internal Server Error. An unexpected error occurred.

post/v1/config/ecosystems
Request samples
application/json
{}
Response samples
application/json
{}

Update ecosystem configuration

Updates the tenant's ecosystem configuration.

Analytic events

  • ECOSYSTEM_CONFIG_UPDATE_START
  • ECOSYSTEM_CONFIG_UPDATE_SUCCESS
  • ECOSYSTEM_CONFIG_UPDATE_FAIL
Roles: ["admin","dts-consumer"]
SecuritybearerAuth
Request
Request Body schema: application/json
required
Array of objects = 1 items
isIssuanceRestricted
boolean

Indicates whether issuance is restricted (true) or not (false).

isVerificationRestricted
boolean

Indicates whether verification is restricted (true) or not (false).

Responses
200

Ecosystem configuration updated

400

Bad Request. The request was malformed or missing required parameters.

404

Not Found. The specified resource was not found.

500

Internal Server Error. An unexpected error occurred.

put/v1/config/ecosystems
Request samples
application/json
{}
Response samples
application/json
{}

Delete ecosystem configuration

Deletes the tenant's ecosystem configuration.

Analytic events

  • ECOSYSTEM_CONFIG_DELETE_START
  • ECOSYSTEM_CONFIG_DELETE_SUCCESS
  • ECOSYSTEM_CONFIG_DELETE_FAIL
Roles: ["admin","dts-consumer"]
SecuritybearerAuth
Responses
204

Ecosystem configuration deleted

404

Not Found. The specified resource was not found.

500

Internal Server Error. An unexpected error occurred.

delete/v1/config/ecosystems
Request samples
Response samples
application/json
{
  • "code": "string",
  • "message": "string",
  • "details": [
    ]
}