Manage subscriptions, usage limits, and payments for your organization.
Oquira's subscription management allows you to subscribe to different plans, track your usage, and manage your payment methods.
| Plan | Description | Features |
|---|---|---|
| Starter | Free plan to discover Oquira | 1 service, 1 queue, 50 tickets/month |
| Pro | For growing businesses | Unlimited services, advanced analytics, priority support |
| Enterprise | Custom solution | Custom features, dedicated SLA, advanced integrations |
Check your organization's subscription status.
GET /v1/billing/subscription/{organizationId}
X-API-Key: your_api_key_hereUpgrade or downgrade to a different plan.
PATCH /v1/billing/subscription/{organizationId}
X-API-Key: your_api_key_here
Content-Type: application/json
{
"plan": "pro",
"billingInterval": "yearly"
}| Property | Type | Required | Description |
|---|---|---|---|
plan | string | Yes | Target plan: starter, pro, enterprise |
billingInterval | string | No | Billing period: monthly, yearly |
Cancel your subscription. Access remains active until the end of the current period.
POST /v1/billing/subscription/{organizationId}/cancel
X-API-Key: your_api_key_here
Content-Type: application/json
{
"reason": "Switching to an internal solution"
}Track your resource consumption for the current period.
GET /v1/billing/usage/{organizationId}
X-API-Key: your_api_key_hereOquira supports two payment providers depending on your region:
| Region | Provider | Currencies |
|---|---|---|
| International | DodoPayments | EUR, USD |
| WAEMU (West Africa) | FedaPay | XOF |
For organizations in the WAEMU zone.
POST /v1/billing/fedapay/checkout
X-API-Key: your_api_key_here
Content-Type: application/json
{
"organizationId": "org_xyz...",
"plan": "pro",
"billingInterval": "monthly",
"returnUrl": "https://business.oquira.com/billing/success"
}GET /v1/billing/usage/{organizationId}/history
X-API-Key: your_api_key_hereReturns the complete history of your invoices with payment statuses.