Logo
Zoom Public API Documentation

List user's TSP accounts

GET {{baseUrl}}/users/:userId/tsp

A user can have a maximum of two TSP accounts. Use this API to list all TSP accounts of a user.

Scopes: tsp:read:admin,tsp:read

Rate Limit Label: Medium

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "tsp_accounts": [ { "conference_code": "<string>", "leader_pin": "<string>", "dial_in_numbers": [ { "code": "<string>", "country_label": "<string>", "number": "<string>", "type": "toll" }, { "code": "<string>", "country_label": "<string>", "number": "<string>", "type": "media_link" } ], "id": "1", "tsp_bridge": "US_TSP_TB" }, { "conference_code": "<string>", "leader_pin": "<string>", "dial_in_numbers": [ { "code": "<string>", "country_label": "<string>", "number": "<string>", "type": "toll" }, { "code": "<string>", "country_label": "<string>", "number": "<string>", "type": "tollfree" } ], "id": "1", "tsp_bridge": "US_TSP_TB" } ] }



Curl
curl -X GET 'https://api.zoom.us/v2/users/:userId/tsp' -H 'Accept: application/json'

ENDPOINTS