TURN
List TURN Keys
client.calls.turn.list(TURNListParams { account_id } params, RequestOptionsoptions?): SinglePage<TURNListResponse { created, modified, name, uid } >
GET/accounts/{account_id}/calls/turn_keys
Retrieve TURN key details
client.calls.turn.get(stringkeyId, TURNGetParams { account_id } params, RequestOptionsoptions?): TURNGetResponse { created, modified, name, uid }
GET/accounts/{account_id}/calls/turn_keys/{key_id}
Create a new TURN key
client.calls.turn.create(TURNCreateParams { account_id, name } params, RequestOptionsoptions?): TURNCreateResponse { created, key, modified, 2 more }
POST/accounts/{account_id}/calls/turn_keys
Edit TURN key details
client.calls.turn.update(stringkeyId, TURNUpdateParams { account_id, name } params, RequestOptionsoptions?): TURNUpdateResponse { created, modified, name, uid }
PUT/accounts/{account_id}/calls/turn_keys/{key_id}
Delete TURN key
client.calls.turn.delete(stringkeyId, TURNDeleteParams { account_id } params, RequestOptionsoptions?): TURNDeleteResponse { created, modified, name, uid }
DELETE/accounts/{account_id}/calls/turn_keys/{key_id}