provider LegacyTeams GET /legacyTeams/user/{id}
@utdk/pipedrive /legacyTeams/user/{id}
Get all teams of a user
Returns data about all teams which have the specified user as a member.
id path required
The ID of the user
integer
order_by query
The field name to sort returned teams by
enum: id, name, manager_id, active_flag
skip_users query
When enabled, the teams will not include IDs of member users
enum: 0, 1

Try it

Authentication
Configure credentials for Pipedrive API v1
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.

Saved automatically to browser storage.

getuserteams
GET/legacyTeams/user/{id}
Returns data about all teams which have the specified user as a member.

Parameters

required

The ID of the user

The field name to sort returned teams by

When enabled, the teams will not include IDs of member users

Enter a gateway URL above to enable sending.

Code snippet
Updates live as you fill in the form above.

TypeScript

import pipedrive from '@utdk/pipedrive';

await pipedrive.getuserteams({
  "order_by": "id",
  "skip_users": 0
})