Get user mapping
Get the default user mapping between a provider and an external user on a connected account.
Returns a 404 when the connected account does not exist, is not accessible to the current actor, or is not a conferencing connected account; when the provider does not exist or has been deactivated; or when no mapping exists for the provider on this connected account.
Authorization
authorization In: header
Path Parameters
The connected account's unique identifier
^cact_\w{12}$The provider's unique identifier
^prov_\w{12}$Response Body
application/json
application/json
application/json
curl -X GET "https://example.com/v1/connected_accounts/cact_abcdef123456/user_mappings/prov_abcdef123456"{ "data": { "external_user": { "email": "dr.smith@example.com", "first_name": "Jane", "id": "exusr_d025a96ac0c6", "last_name": "Smith", "object": "external_user", "status": "active" }, "object": "user_mapping", "provider": { "created_at": "2017-09-12T12:34:55Z", "display_name": "John Smith", "email": "john@example.com", "first_name": "John", "id": "prov_d025a96ac0c6", "last_name": "Smith", "metadata": { "external_id": "123" }, "object": "provider", "time_zone": "America/New_York", "updated_at": "2017-09-13T10:11:12Z" }, "source": "manual" }}Get connected account GET
Get a single connected account by ID.
List external users GET
List the external users synced from a connected account (e.g., the users on a connected Zoom account). Returns a 404 when the connected account does not exist, is not accessible to the current actor, or is not a conferencing connected account.