reseller
Get all teams for a reseller
reseller
- GETGet all teams for a reseller
- POSTCreate a new team
- GETGet information about a team
- PUTUpdate a new team
- DELRemove a team from the reseller
- PUTUpdate a new team
- POSTCreate new inboxes and users for a team
- GETGet all users on a team
- POSTAdd a user to a team
- DELRemove users from a team
- GETGets all inboxes for a team
- POSTCreate a new inbox for a team
- DELRemove inboxes from a team
- POSTCreate new inboxes and users for a team
- POSTAssign multiple Users to an Inbox
- DELRemove users from an inbox
- GETReturn the whitelist domains for the reseller team
- POSTCreate a new whitelisted domain for a team
- DELRemove a whitelisted domain from the team
- GETGet Resellers under a Platform
- POSTCreate a new Reseller
- GETGet reseller tiers
- POSTImport team users
- GETGet import team users job status
reseller
Get all teams for a reseller
GET
/
reseller
/
teams
curl --request GET \
--url https://partners.clerk.chat/reseller/teams
{
"data": [
{
"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>"
}
}
],
"total": 123
}
Response
200 - application/json
Available options:
fraud
, free
, starter
, unlimited
, mfa_nonvoip
curl --request GET \
--url https://partners.clerk.chat/reseller/teams
{
"data": [
{
"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>"
}
}
],
"total": 123
}