v1

latestOpenAPI 3.0.12026-08-0621301.7 MB
Meetings

Link a user with the installed video call integration

A video calling provider must call this endpoint after a user has installed the video calling app so that the new user's information is sent.

post/meetings/userProviderLinks

Request body

user_provider_idstring uuid required

Unique identifier linking a user to the installed integration. Generated by the integration.

user_idinteger required

Pipedrive user ID

company_idinteger required

Pipedrive company ID

marketplace_client_idstring required

Pipedrive Marketplace client ID of the installed integration

Example request

{
  "user_provider_id": "1e3943c9-6395-462b-b432-1f252c017f3d",
  "user_id": 123,
  "company_id": 456,
  "marketplace_client_id": "57da5c3c55a82bb4"
}

Response

User provider link was successfully created

successboolean

Boolean that indicates whether the request was successful or not

Example response

{
  "data": {
    "message": "The user was added successfully"
  }
}