Skip to main content

Get team details

Return team details including a list of the employees

GET
/api/partners/v1/team/:team_id/

Request

Example requestGET
$ curl -X GET \
    -H "Authorization: Bearer YOUR_API_KEY" \
    "https://api.funnelleasing.com/api/partners/v1/team/:team_id/"

Response

Example responseJSON200 · application/json
{
"id": 123,
"name": "TeamName",
"team_type": "string",
"users": [
{
"id": 123,
"first_name": "Elon",
"last_name": "Zukerburg",
"email": "elon.zukerburg@x.com",
"role": "user-role"
}
]
}