provider Inboxes POST /teams/{team_id}/inboxes
@utdk/front /teams/{team_id}/inboxes
Create team inbox
Create an inbox for a team (workspace). Required scope: `inboxes:write`
team_id path required
The team ID
string

Try it

Authentication
Configure credentials for Core API
createTeamInbox
POST/teams/{team_id}/inboxes
Create an inbox for a team (workspace). Required scope: `inboxes:write`

Parameters

required

The team ID

Input

required

The name of the inbox

An array of teammate IDs that should have access to the inbox. Alternatively, you can supply teammate emails as a [resource alias](https://dev.frontapp.com/docs/resource-aliases-1).

Whether the inbox is public or not

An object whose key is the `name` property defined for the custom field in the Front UI. The value of the key must use the same `type` specified for the custom field, as described in https://dev.frontapp.com/reference/custom-fields

Configure credentials above to enable sending.

Code snippet
Updates live as you fill in the form above.

TypeScript

import front from '@utdk/front';

await front.createTeamInbox({
  "team_id": "tim_123"
})