Skip to main content

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.

tip

Currently each tenant can only create one ecosystem.

Request

Make the following request to create the ecosystem:

POST https://api.sovrin.one/v1/ecosystems
{
"name": "My Ecosystem"
}

- name: Enter a unique name for your ecosystem (maximum 50 characters).

Response

{
"id": "87880d7e-a4d0-462e-8383-3f1e5e16865d",
"name": "My Ecosystem"
}
  • 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.