v1

latestOpenAPI 3.0.0Proprietary2026-08-062711471.0 MB
Billing

Unassign a user's Max seat

Removes the Max seat from the given user, freeing it for someone else. Requires a USER API key belonging to an OWNER or ADMIN.

post/public/v1/billing/max/seats/unassign

Request body

userIdinteger required

ID of the user to assign/unassign (see GET /users)

Example request

{
  "userId": 12
}

Response

Seat unassigned

successboolean required
userIdnumber required
assignedboolean required

Whether the user holds a Max seat after this operation

Example response

{
  "success": true,
  "userId": 12
}