Skip to main content
POST
/
reseller
/
teams
Create a new team
curl --request POST \
  --url https://partners.clerk.chat/reseller/teams \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "externalId": "<string>",
  "microsoftTenantId": "<string>",
  "tierSku": "<string>",
  "purchaseOrder": "<string>",
  "whitelistDomains": [
    "<string>"
  ]
}'
{
  "id": "<string>",
  "name": "<string>",
  "tier": "fraud",
  "externalId": "<string>",
  "created": "2023-11-07T05:31:56Z",
  "updated": "2023-11-07T05:31:56Z",
  "inboxCount": 123,
  "userCount": 123,
  "planTier": {
    "name": "<string>",
    "externalId": "<string>"
  }
}

Body

application/json
name
string
required
externalId
string
microsoftTenantId
string
tierSku
string

SKU of the product you are adding to this team

purchaseOrder
string
whitelistDomains
string[]

Domain names like "company.com" that will support future users to automatically be requested to join this team when they log in.

Response

id
string
required
name
string
required
tier
enum<string>
required
Available options:
fraud,
free,
starter,
unlimited,
mfa_nonvoip
externalId
string
required
created
string<date-time>
required
updated
string<date-time>
required
inboxCount
number
required
userCount
number
required
planTier
object
required