Ask Kevin is smarter.
OmniDimension
Reseller

Update user expiry

Set or remove the expiry date on a child user. The user must belong to a child organization of your reseller.

Reseller accounts only. Request access.

POST/reseller/users/expiry
Body
2 fields
·

ID of the child user to update.

Expiry date in `YYYY-MM-DD` format. Omit or pass `null` to remove the expiry.

curl -X POST 'https://backend.omnidim.io/api/v1/reseller/users/expiry' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
  "user_id": 1234,
  "expiry_date": "2026-12-31"
}'
Example response
synthetic
{
  "success": true,
  "message": "User expiry date updated successfully",
  "user_id": 1234,
  "expiry_date": "2026-12-31"
}

Authorization

BearerAuth
AuthorizationBearer <token>

Bearer token authentication. Obtain your API key from the OmniDimension dashboard.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json