Skip to main content
If you integrate RQE as a platform for your own clients (partner/reseller pattern), these endpoints let you create a client project via API and get its API key to operate on their behalf: register their reply/tracking domain, send, manage contacts. Base URL: https://api.reallyquickemails.com
Each client = one project. The reply domain, tracking domain and stats are per project, so each of your clients is an independent RQE project with its own API key. These endpoints create and list those projects inside your partner organization.

Authentication

Partner endpoints use a dedicated partner key (distinct from project API keys):
The partner key is tied to your organization and can only create and view projects within it. It’s dedicated and revocable without affecting your sends. It’s issued by RQE when your partner account is enabled. A missing or invalid key returns 401.

Flow

1

Create the client project

POST /v1/partner/projects with the client’s name → you get project_id, slug and its api_key (sk_proj_...).
2

Set up their domain

With the client’s api_key, register their reply domain and/or tracking domain.
3

Operate on their behalf

Use the client’s api_key to send, manage contacts and view activity — all isolated to that project.

POST /v1/partner/projects

Creates a client project inside your partner organization. The api_key and slug are generated automatically.

Request Body

Response 201 Created
The api_key is returned only once, at creation. Store it securely — it’s the credential you operate that client project with.

GET /v1/partner/projects

Lists the client projects in your organization.
Response 200 OK

DELETE /v1/partner/projects/{projectId}

Disables a client project (soft-disable). It is not deleted: links in already-sent emails depend on the project still existing. It stops sending and gets a disabled_at.
Response 200 OK

Error codes