Get Team Information

GET /team

This endpoint retrieves information of your team.

Responses

  • 200 application/json

    Information of your team.

    Hide response attributes Show response attributes object
    • _id string
    • tz string

      The timezone associated to your account. We are using IANA time zone format. Ex: America/New_York for NYC.

    • name string
    • plan object
      Hide plan attributes Show plan attributes
  • Bad Request -- Your request is invalid.

  • Unauthorized -- Your API key is wrong.

  • Forbidden -- The object requested is hidden for administrators only.

  • Not Found -- The specified object could not be found.

  • Too Many Requests -- You're requesting too many objects! Slow down!

  • Internal Server Error -- We had a problem with our server. Try again later.

  • Service Unavailable -- We're temporarily offline for maintenance. Please try again later.

GET /team
curl \
 -X GET https://api.usecollect.com/v1/team
Response examples (200)
{
  "_id": "YcnS5JKMnG5cA3TXK",
  "tz": "America/New_York",
  "name": "ACME",
  "plan": {
    "name": "Business",
    "end": "2024-05-04T09:42:00+00:00"
  }
}