Skip to main content
Convoy provides the tools to properly categorise your data. These tools are organisations and projects.

Organisations

An organisation is the highest level namespace within a Convoy instance. It comprises several projects. Ideally, this should map to a real-world organisation or some form of high-level grouping. As a new user, an organization can be created by clicking on the Create Organisation on the dashboard:
Create organization
To switch between organizations, open the current organization’s settings, or create a new organization, use the account dropdown on the right of the top bar.
Organization operations

Adding new members

In the Community Edition, all users are super users, so all users can invite other team members.
Before doing this, ensure you have your SMTP configuration set up.
Team page
To add a new team member, visit the teams page at the top middle of the page.
Add new teammate
Once the invite is sent, the user will get an email with an invitation link to join the new project. An invitation token is valid for 2 weeks after which you’d need to generate a new one.

Projects

A project is a hierarchical namespace for all core resources within Convoy. All events, endpoints, subscriptions and all other critical configurations belong to a project and a project belongs to an organisation. There are two types of projects; Incoming and Outgoing projects.
Incoming and outgoing projects

Incoming project

An incoming project is designed to receive webhooks from third-party party sources like Github, Twilio, Stripe etc. and even custom sources based on any form of verification. It was designed for API consumers.

Outgoing project

An outgoing project is designed to publish webhooks to users’ endpoints. It is designed for API providers.

Configure a Project

Project configurations
The following are parameters that can be configured on a project.
ConfigTypeSupported ValuesDefault
Signature Details
HeaderStringX-Convoy-Signature
HashStringSHA512
Retry Logic
MechanismStringLinear time retry, Exponential time backoffLinear time retry
DurationDuration String5s
LimitInteger5
Rate Limit
DurationDuration String5s
LimitInteger5
Others
Disable Failing EndpointBooleanFalse
Search PolicyDuration String720h (30 days)
Enable Meta EventsBooleanFalse

Relationship with subscription

All these configurations act as sensible defaults for all subscriptions in a project. A project can’t exist without all these parameters defined in the project. Each configuration can also be described on subscriptions in a project, where a subscription doesn’t define these parameters, we fall back to the project’s defaults.

Multiple Projects & Multi-Tenancy

There are several practical ways of using projects. Convoy’s official recommendation for handling multi-tenant architectures is as follows:
  • A project per environment: We strongly recommend maintaining projects per environment (e.g., Staging vs. Production) rather than per customer. Currently, projects cannot be created dynamically via the API and must be provisioned ahead of time. However, every other entity inside a project (sources, endpoints, subscriptions) can be fully managed via the API.
  • Single Project for Multi-Tenancy: Since projects are per environment, the best practice for handling your actual tenants (customers) within that environment is to use a Single Project with Fan-out or Broadcast event structures. By providing the tenant’s owner_id when ingesting an event, Convoy routes it automatically to all endpoints registered for that specific tenant.
  • Community Limitations: The Community edition is strictly limited to 1 organization and 2 projects. For true multi-tenant management without limits, the Enterprise/Premium version is required.