API explorer
Every endpoint of the CamelMailer API v2: 106 operations, straight from the OpenAPI spec. Pick an endpoint, copy a snippet, or send a live request from your browser.
Send
Show the authenticated server
AuthX-Server-API-Key
Responses
200Success envelope; see the endpoint description for the data shape.401Missing or invalid credentials
Validate the server API key
AuthX-Server-API-Key
Responses
200Success envelope; see the endpoint description for the data shape.401Missing or invalid credentials
Send a message
Queues one message per recipient. The from domain must be a
verified sending domain of the server.
AuthX-Server-API-Key
Request body
fromstring · email | objectrequiredEither a bare email string or an object with a display name.toarray<string · email | object>requiredccarray<string · email | object>bccarray<string · email | object>reply_toarray<string · email | object>subjectstringhtml_bodystringtext_bodystringheadersobjectattachmentsarray<object>tagstringFree-form tag for filtering/statsmetadataobjectstreamstringMessage-stream permalink (defaults to the server's default stream)
{ "from": "billing@acme.com", "to": [ "ada@example.com" ], "subject": "Your receipt", "text_body": "Thanks for your purchase.", "tag": "receipt" }
Responses
201Queued401Missing or invalid credentials422The request was understood but invalid
Send a batch of messages
An array of send requests; returns one result per entry.
AuthX-Server-API-Key
Request body
messagesarray<object>
{ "messages": [ { "from": "user@example.com", "to": [ "user@example.com" ] } ] }
Responses
200Success envelope; see the endpoint description for the data shape.401Missing or invalid credentials
Send using a stored template
Renders the named template (Mustache-style {{ variables }})
against template_model, then sends. Fields set directly
(e.g. subject) override the rendered ones.
AuthX-Server-API-Key
Request body
fromstring · email | objectrequiredEither a bare email string or an object with a display name.toarray<string · email | object>requiredccarray<string · email | object>bccarray<string · email | object>reply_toarray<string · email | object>subjectstringhtml_bodystringtext_bodystringheadersobjectattachmentsarray<object>tagstringFree-form tag for filtering/statsmetadataobjectstreamstringMessage-stream permalink (defaults to the server's default stream)templatestringrequiredTemplate permalinktemplate_modelobject
{ "from": "hello@acme.com", "to": [ "ada@example.com" ], "template": "welcome", "template_model": { "name": "Ada", "product": "Acme" } }
Responses
201Success envelope; see the endpoint description for the data shape.401Missing or invalid credentials404Resource not found422The request was understood but invalid
Send a template to many recipients (batch)
AuthX-Server-API-Key
Responses
200Success envelope; see the endpoint description for the data shape.401Missing or invalid credentials
Messages
List messages
AuthX-Server-API-Key
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
page | query | integer | — |
per_page | query | integer | — |
scope | query | stringincoming | outgoing | — |
status | query | string | — |
tag | query | string | — |
query | query | string | Substring match on subject / addresses |
stream | query | string | Message-stream permalink |
Responses
200Messages401Missing or invalid credentials
Show a message
AuthX-Server-API-Key
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
idrequired | path | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.404Resource not found
Delivery attempts of a message
AuthX-Server-API-Key
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
idrequired | path | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.404Resource not found
Open events of a message
AuthX-Server-API-Key
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
idrequired | path | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Click events of a message
AuthX-Server-API-Key
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
idrequired | path | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Raw RFC 5322 source of a message
AuthX-Server-API-Key
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
idrequired | path | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.404Resource not found
Inbound
Search inbound / held messages
AuthX-Server-API-Key
Responses
200Success envelope; see the endpoint description for the data shape.
Show an inbound message
AuthX-Server-API-Key
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
idrequired | path | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Requeue an inbound message for delivery
AuthX-Server-API-Key
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
idrequired | path | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Bypass a hold and deliver
AuthX-Server-API-Key
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
idrequired | path | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Stats
Message counters
AuthX-Server-API-Key
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
from | query | string · date-time | — |
to | query | string · date-time | — |
Responses
200Counters
Delivery/queue statistics
AuthX-Server-API-Key
Responses
200Success envelope; see the endpoint description for the data shape.
List bounce messages
AuthX-Server-API-Key
Responses
200Success envelope; see the endpoint description for the data shape.
Show a bounce
AuthX-Server-API-Key
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
idrequired | path | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Streams
List message streams
AuthX-Server-API-Key
Responses
200Success envelope; see the endpoint description for the data shape.
Create a message stream
AuthX-Server-API-Key
Request body (optional)
namestringrequiredstream_typestring"transactional" | "broadcast"
{ "name": "string" }
Responses
201Success envelope; see the endpoint description for the data shape.
Show a stream
AuthX-Server-API-Key
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
permalinkrequired | path | string | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Update a stream
AuthX-Server-API-Key
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
permalinkrequired | path | string | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Archive a stream
AuthX-Server-API-Key
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
permalinkrequired | path | string | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Templates
List templates
AuthX-Server-API-Key
Responses
200Success envelope; see the endpoint description for the data shape.
Create a template
AuthX-Server-API-Key
Request body (optional)
namestringrequiredsubjectstringMay contain {{ variables }}html_bodystringtext_bodystring
{ "name": "string" }
Responses
201Success envelope; see the endpoint description for the data shape.
Show a template
AuthX-Server-API-Key
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
permalinkrequired | path | string | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Update a template
AuthX-Server-API-Key
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
permalinkrequired | path | string | — |
Request body (optional)
namestringrequiredsubjectstringMay contain {{ variables }}html_bodystringtext_bodystring
{ "name": "string" }
Responses
200Success envelope; see the endpoint description for the data shape.
Archive a template
AuthX-Server-API-Key
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
permalinkrequired | path | string | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Render a template against a model (preview)
AuthX-Server-API-Key
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
permalinkrequired | path | string | — |
Request body (optional)
template_modelobject
{ "template_model": {} }
Responses
200Success envelope; see the endpoint description for the data shape.
Auth
Sign in with email + password (+ optional TOTP)
Request body
email_addressstring · emailrequiredpasswordstringrequiredtotp_codestringRequired when 2FA is enabled
{ "email_address": "user@example.com", "password": "string" }
Responses
201Session created401InvalidCredentials / TOTPRequired / InvalidTOTPCode403AccountLocked
Revoke the current session
AuthAuthorization: Bearer …
Responses
200Success envelope; see the endpoint description for the data shape.
Current user + memberships
AuthAuthorization: Bearer …
Responses
200Success envelope; see the endpoint description for the data shape.
Update profile
AuthAuthorization: Bearer …
Responses
200Success envelope; see the endpoint description for the data shape.
Change password (revokes all sessions, returns a fresh token)
AuthAuthorization: Bearer …
Responses
200Success envelope; see the endpoint description for the data shape.
Request a password reset (identical response for unknown addresses)
Responses
200Success envelope; see the endpoint description for the data shape.
Redeem a reset token
Responses
200Success envelope; see the endpoint description for the data shape.422The request was understood but invalid
Start TOTP enrollment (returns secret + otpauth URL)
AuthAuthorization: Bearer …
Responses
200Success envelope; see the endpoint description for the data shape.
Confirm TOTP with a code — 2FA is enforced from here on
AuthAuthorization: Bearer …
Responses
200Success envelope; see the endpoint description for the data shape.
Disable TOTP (requires the password)
AuthAuthorization: Bearer …
Responses
200Success envelope; see the endpoint description for the data shape.
Preview an invitation (public)
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
tokenrequired | path | string | — |
Responses
200Success envelope; see the endpoint description for the data shape.422The request was understood but invalid
Accept an invitation (creates the account when new)
Responses
200Success envelope; see the endpoint description for the data shape.422The request was understood but invalid
Begin OIDC SSO (redirect, or JSON with Accept application/json)
Responses
200Success envelope; see the endpoint description for the data shape.307Redirect to the identity provider404SSODisabled
OIDC redirect URI (completes SSO)
Responses
201Success envelope; see the endpoint description for the data shape.307Redirect to the frontend with the token in the fragment
Organizations
List organizations (users see their memberships)
AuthX-Admin-API-KeyAuthorization: Bearer …
Responses
200Success envelope; see the endpoint description for the data shape.
Create an organization (a user creator becomes its owner)
AuthX-Admin-API-KeyAuthorization: Bearer …
Responses
201Success envelope; see the endpoint description for the data shape.
Show an organization
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
Responses
200Success envelope; see the endpoint description for the data shape.
Delete an organization (owner)
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
Responses
200Success envelope; see the endpoint description for the data shape.
Servers
List mail servers
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
Responses
200Success envelope; see the endpoint description for the data shape.
Create a mail server
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
Responses
201Success envelope; see the endpoint description for the data shape.
Show a server
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
serverrequired | path | string | Server permalink |
Responses
200Success envelope; see the endpoint description for the data shape.
Update server settings
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
serverrequired | path | string | Server permalink |
Responses
200Success envelope; see the endpoint description for the data shape.
Delete a server
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
serverrequired | path | string | Server permalink |
Responses
200Success envelope; see the endpoint description for the data shape.
Suspend sending
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
serverrequired | path | string | Server permalink |
Responses
200Success envelope; see the endpoint description for the data shape.
Lift a suspension
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
serverrequired | path | string | Server permalink |
Responses
200Success envelope; see the endpoint description for the data shape.
Assign an IP pool
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
serverrequired | path | string | Server permalink |
Responses
200Success envelope; see the endpoint description for the data shape.
Domains
List sending domains
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
serverrequired | path | string | Server permalink |
Responses
200Success envelope; see the endpoint description for the data shape.
Add a sending domain
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
serverrequired | path | string | Server permalink |
Responses
201Success envelope; see the endpoint description for the data shape.
Show a domain
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
serverrequired | path | string | Server permalink |
namerequired | path | string | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Delete a domain
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
serverrequired | path | string | Server permalink |
namerequired | path | string | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Mark a domain verified
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
serverrequired | path | string | Server permalink |
namerequired | path | string | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Credentials
List credentials
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
serverrequired | path | string | Server permalink |
Responses
200Success envelope; see the endpoint description for the data shape.
Create a credential (API, SMTP or SMTP-IP)
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
serverrequired | path | string | Server permalink |
Responses
201Success envelope; see the endpoint description for the data shape.
Show a credential
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
serverrequired | path | string | Server permalink |
idrequired | path | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Update a credential (name, hold)
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
serverrequired | path | string | Server permalink |
idrequired | path | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Delete a credential
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
serverrequired | path | string | Server permalink |
idrequired | path | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Routes
List inbound routes
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
serverrequired | path | string | Server permalink |
Responses
200Success envelope; see the endpoint description for the data shape.
Create a route
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
serverrequired | path | string | Server permalink |
Responses
201Success envelope; see the endpoint description for the data shape.
Show a route
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
serverrequired | path | string | Server permalink |
idrequired | path | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Update a route
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
serverrequired | path | string | Server permalink |
idrequired | path | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Delete a route
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
serverrequired | path | string | Server permalink |
idrequired | path | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Webhooks
List webhooks
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
serverrequired | path | string | Server permalink |
Responses
200Success envelope; see the endpoint description for the data shape.
Create a webhook
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
serverrequired | path | string | Server permalink |
Responses
201Success envelope; see the endpoint description for the data shape.
Show a webhook
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
serverrequired | path | string | Server permalink |
idrequired | path | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Delete a webhook
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
serverrequired | path | string | Server permalink |
idrequired | path | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Enable a webhook
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
serverrequired | path | string | Server permalink |
idrequired | path | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Disable a webhook
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
serverrequired | path | string | Server permalink |
idrequired | path | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Suppressions
List suppressions
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
serverrequired | path | string | Server permalink |
Responses
200Success envelope; see the endpoint description for the data shape.
Suppress an address
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
serverrequired | path | string | Server permalink |
Responses
201Success envelope; see the endpoint description for the data shape.
Remove a suppression
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
serverrequired | path | string | Server permalink |
addressrequired | path | string | — |
Responses
200Success envelope; see the endpoint description for the data shape.
People
List members
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
Responses
200Success envelope; see the endpoint description for the data shape.
Add an existing account as a member (admin)
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
Responses
201Success envelope; see the endpoint description for the data shape.
Change a member's role (owner transitions need an owner)
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
user_idrequired | path | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Remove a member (the last owner is immovable)
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
user_idrequired | path | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.
List invitations
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
Responses
200Success envelope; see the endpoint description for the data shape.
Invite by email (invite token returned exactly once)
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
Responses
201Success envelope; see the endpoint description for the data shape.
Revoke an invitation
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
orgrequired | path | string | Organization permalink |
idrequired | path | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Instance
List user accounts (instance admins)
AuthX-Admin-API-KeyAuthorization: Bearer …
Responses
200Success envelope; see the endpoint description for the data shape.
Create a user (optional initial password)
AuthX-Admin-API-KeyAuthorization: Bearer …
Responses
201Success envelope; see the endpoint description for the data shape.
Show a user
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
idrequired | path | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Update a user
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
idrequired | path | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Delete a user
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
idrequired | path | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.
List IP pools
AuthX-Admin-API-KeyAuthorization: Bearer …
Responses
200Success envelope; see the endpoint description for the data shape.
Create an IP pool
AuthX-Admin-API-KeyAuthorization: Bearer …
Responses
201Success envelope; see the endpoint description for the data shape.
Show an IP pool
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
idrequired | path | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Delete an IP pool
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
idrequired | path | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.
List addresses of a pool
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
pool_idrequired | path | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Add an address to a pool
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
pool_idrequired | path | integer | — |
Responses
201Success envelope; see the endpoint description for the data shape.
Show an address
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
pool_idrequired | path | integer | — |
idrequired | path | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Remove an address
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
pool_idrequired | path | integer | — |
idrequired | path | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.
List admin API keys
AuthX-Admin-API-KeyAuthorization: Bearer …
Responses
200Success envelope; see the endpoint description for the data shape.
Create an admin API key (secret returned once)
AuthX-Admin-API-KeyAuthorization: Bearer …
Responses
201Success envelope; see the endpoint description for the data shape.
Revoke an admin API key
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
idrequired | path | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.
Authentication audit trail (instance admins)
AuthX-Admin-API-KeyAuthorization: Bearer …
Parameters
| Parameter | In | Type | Description |
|---|---|---|---|
limit | query | integer | — |
Responses
200Success envelope; see the endpoint description for the data shape.
General
Liveness probe
Unauthenticated; never touches storage.
Responses
200Instance is up
