GET
/
teams
/
{teamId}
curl --request GET \
  --url https://api.firstquadrant.ai/teams/{teamId} \
  --header 'Authorization: <api-key>'
{
  "id": "tea_2MSb8jd6VDptcAcVJuPcJhte3Yc",
  "cursor": 1,
  "name": "My Team",
  "createdAt": "2024-05-12T00:00:00.000Z",
  "updatedAt": "2024-05-12T00:00:00.000Z",
  "deletedAt": "2024-05-12T00:00:00.000Z",
  "timeZone": "America/Los_Angeles",
  "stripeCustomerIdentifier": "cus_NS6PU15OHxLZUW",
  "stripeSubscriptionIdentifier": "sub_1MhF5tHHGwPWDScpd7i4KLIi",
  "followUpStrategy": "FIBONACCI",
  "followUpIntervalDays": 3,
  "followUpMaxCount": 6
}

Authorizations

Authorization
string
headerrequired

You can generate an API key by logging in to your FirstQuadrant account and navigating to Settings -> Apps and enabling "FirstQuadrant API". The API key should begin with "fqa_".

Path Parameters

teamId
string
required

Team ID, starting with tea_

Response

200 - application/json
id
string
required

The unique ID of the team, starting with tea_.

cursor
integer
required

The pagination cursor of the team.

name
string
required

The name of the team.

createdAt
string
required

The date and time the team was created.

updatedAt
string
required

The date and time the team was last updated.

deletedAt
string

The date and time the team was deleted, available only if the team is deleted.

timeZone
string
required

The default timezone of the team.

stripeCustomerIdentifier
string

The Stripe customer identifier, available only if the team has a subscription.

stripeSubscriptionIdentifier
string

The Stripe subscription identifier, available only if the team has a subscription.

followUpStrategy
enum<string>
required

The follow up strategy for the team.

Available options:
EXPONENTIAL,
FIBONACCI,
LINEAR
followUpIntervalDays
integer
required

The minimum number of days to wait before following up.

followUpMaxCount
integer
required

The maximum number of follow ups to send.