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):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.POST /v1/partner/projects
Creates a client project inside your partner organization. Theapi_key and slug are generated automatically.
Request Body
- cURL
- Python
201 Created
GET /v1/partner/projects
Lists the client projects in your organization.- cURL
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 adisabled_at.
- cURL
200 OK