Skip to main content
GET
/
team
Get team
curl --request GET \
  --url https://inboxapp.com/api/v1/team \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "slug": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2025-01-01T00:00:00.000Z",
  "currency": "<string>",
  "allowSupportAccess": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

OK

id
string
required

The ID of the team.

Example:

"pwxtytmwrw58mao0mvb4rwmn"

name
string
required

The name of the team.

Example:

"Acme Agency"

slug
string
required

The slug of the team.

Example:

"acme-agency"

createdAt
string<date-time>
required

The date and time the team was created.

Example:

"2025-01-01T00:00:00.000Z"

updatedAt
string<date-time> | null
required

The date and time the team was last updated.

Example:

"2025-01-01T00:00:00.000Z"

currency
string
required

The currency of the team. Used for valuation of prospects.

Example:

"USD"

allowSupportAccess
boolean
required

Whether support access is allowed for the team.

Example:

true