meetings_link_user_provider
Connects a Pipedrive user to a video calling integration by providing user UUID, user ID, company ID, and marketplace client ID to enable video features.
Instructions
Link a user with the installed video call integration.
Creates a connection between a Pipedrive user and a video calling app provider. This must be called after a user installs the video calling app so that the user's information is sent to Pipedrive.
Required fields:
user_provider_id: UUID linking the user to the integration
user_id: ID of the Pipedrive user
company_id: ID of the company
marketplace_client_id: Marketplace client identifier
Workflow tips:
This endpoint is typically called by video calling providers
The link allows the user to access video calling features within Pipedrive
All four parameters are required for successful linking
Returns success message when link is created
Common use cases:
Initial setup: { "user_provider_id": "1e3943c9-6395-462b-b432-1f252c017f3d", "user_id": 123, "company_id": 456, "marketplace_client_id": "57da5c3c55a82bb4" }
Enable video calling features for a new user
Connect user account after OAuth flow
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user_provider_id | Yes | Unique identifier linking a user to the installed integration (UUID format) | |
| user_id | Yes | ID of the user to link | |
| company_id | Yes | ID of the company | |
| marketplace_client_id | Yes | Marketplace client identifier for the integration |