GET
/
v1
/
team
curl --request GET \
  --url https://client-api.salesfinity.co/v1/team \
  --header 'x-api-key: <api-key>'
{
  "_id": "<string>",
  "name": "<string>",
  "users": [
    {
      "user": {
        "_id": "<string>",
        "email": "<string>",
        "first_name": "<string>",
        "last_name": "<string>"
      },
      "status": "<string>",
      "license": "<string>"
    }
  ]
}

Retrieves details about the current team, including each team member’s status, license, and relevant user data.

  • Tags: teams
  • Response: Team information and associated members.

Authorizations

x-api-key
string
header
required

Response

200 - application/json
Team information retrieved successfully
_id
string
required
name
string
required
users
object[]
required