Retrieve ecosystem configuration
Retrieves the tenant's ecosystem configuration.
Analytic events
- ECOSYSTEM_CONFIG_RETRIEVE_START
- ECOSYSTEM_CONFIG_RETRIEVE_SUCCESS
- ECOSYSTEM_CONFIG_RETRIEVE_FAIL
Ecosystem configuration retrieved
Not Found. The specified resource was not found.
Internal Server Error. An unexpected error occurred.
- curl
- Node.js
- JavaScript
- Python
- C#
- Java
- 200
- 404
{- "ecosystems": [
], - "isIssuanceRestricted": false,
- "isVerificationRestricted": false
}
Create ecosystem configuration
Creates an ecosystem configuration for the tenant.
Analytic events
- ECOSYSTEM_CONFIG_CREATE_START
- ECOSYSTEM_CONFIG_CREATE_SUCCESS
- ECOSYSTEM_CONFIG_CREATE_FAIL
Ecosystem configuration created
Bad Request. The request was malformed or missing required parameters.
Internal Server Error. An unexpected error occurred.
- Payload
- curl
- Node.js
- JavaScript
- Python
- C#
- Java
{- "ecosystems": [
], - "isIssuanceRestricted": false,
- "isVerificationRestricted": false
}
- 201
- 400
{- "ecosystems": [
], - "isIssuanceRestricted": false,
- "isVerificationRestricted": false
}
Update ecosystem configuration
Updates the tenant's ecosystem configuration.
Analytic events
- ECOSYSTEM_CONFIG_UPDATE_START
- ECOSYSTEM_CONFIG_UPDATE_SUCCESS
- ECOSYSTEM_CONFIG_UPDATE_FAIL
Ecosystem configuration updated
Bad Request. The request was malformed or missing required parameters.
Not Found. The specified resource was not found.
Internal Server Error. An unexpected error occurred.
- Payload
- curl
- Node.js
- JavaScript
- Python
- C#
- Java
{- "ecosystems": [
], - "isIssuanceRestricted": false,
- "isVerificationRestricted": false
}
- 200
- 400
- 404
{- "ecosystems": [
], - "isIssuanceRestricted": false,
- "isVerificationRestricted": false
}
Delete ecosystem configuration
Deletes the tenant's ecosystem configuration.
Analytic events
- ECOSYSTEM_CONFIG_DELETE_START
- ECOSYSTEM_CONFIG_DELETE_SUCCESS
- ECOSYSTEM_CONFIG_DELETE_FAIL
Ecosystem configuration deleted
Not Found. The specified resource was not found.
Internal Server Error. An unexpected error occurred.
- curl
- Node.js
- JavaScript
- Python
- C#
- Java
- 404
{- "code": "string",
- "message": "string",
- "details": [
- {
- "value": "string",
- "msg": "Invalid value",
- "param": "id",
- "location": "body"
}
]
}