reseller
Create new inboxes and users for a team
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
Create new inboxes and users for a team
Create a new inboxes and users for a team
POST
/
reseller
/
teams
/
{teamId}
/
inboxes
/
bulk
curl --request POST \
--url https://partners.clerk.chat/reseller/teams/{teamId}/inboxes/bulk \
--header 'Content-Type: application/json' \
--data '{
"inboxes": [
{
"name": "<string>",
"phone": "<string>",
"email": "jsmith@example.com",
"externalId": "<string>"
}
]
}'
{
"inboxes": [
{
"id": "<string>",
"phone": "<string>",
"externalId": "<string>",
"created": "2023-11-07T05:31:56Z",
"updated": "2023-11-07T05:31:56Z"
}
]
}
Path Parameters
Body
application/json
curl --request POST \
--url https://partners.clerk.chat/reseller/teams/{teamId}/inboxes/bulk \
--header 'Content-Type: application/json' \
--data '{
"inboxes": [
{
"name": "<string>",
"phone": "<string>",
"email": "jsmith@example.com",
"externalId": "<string>"
}
]
}'
{
"inboxes": [
{
"id": "<string>",
"phone": "<string>",
"externalId": "<string>",
"created": "2023-11-07T05:31:56Z",
"updated": "2023-11-07T05:31:56Z"
}
]
}