Create an ecosystem

An ecosystem includes a single service provider and its valid participants that issue and verify credentials. Each ecosystem defines:

  • Participants: Issuers and verifiers that are valid in the ecosystem.

  • Credentials Types: Credential types that are valid in the ecosystem.

  • Issuer and Verifier Policies: Define what participants are allowed to issue different types of credentials within the ecosystem.

The first step in creating an Enhanced Ecosystem is to create the overarching ecosystem entity.

Currently each tenant can only create one ecosystem.

Request

Make the following request to create the ecosystem:

http
Copy to clipboard.
1POST https://YOUR_TENANT_URL/v1/ecosystems
json
Copy to clipboard.
1{
2  "name": "My Ecosystem"
3}
  • name: Enter a unique name for your ecosystem (maximum 50 characters).

Response

json
Copy to clipboard.
1{
2  "id": "87880d7e-a4d0-462e-8383-3f1e5e16865d",
3  "name": "My Ecosystem"
4}
  • id: Unique identifier for the new ecosystem. This identifier is used when creating participants, credential types and policies.

What's Next?

After creating an ecosystem, you can start populating it by creating participants.