SFU
List apps
client.calls.sfu.list(SFUListParams { account_id } params, RequestOptionsoptions?): SinglePage<SFUListResponse { created, modified, name, uid } >
GET/accounts/{account_id}/calls/apps
Retrieve app details
client.calls.sfu.get(stringappId, SFUGetParams { account_id } params, RequestOptionsoptions?): SFUGetResponse { created, modified, name, uid }
GET/accounts/{account_id}/calls/apps/{app_id}
Create a new app
client.calls.sfu.create(SFUCreateParams { account_id, name } params, RequestOptionsoptions?): SFUCreateResponse { created, modified, name, 2 more }
POST/accounts/{account_id}/calls/apps
Edit app details
client.calls.sfu.update(stringappId, SFUUpdateParams { account_id, name } params, RequestOptionsoptions?): SFUUpdateResponse { created, modified, name, uid }
PUT/accounts/{account_id}/calls/apps/{app_id}
Delete app
client.calls.sfu.delete(stringappId, SFUDeleteParams { account_id } params, RequestOptionsoptions?): SFUDeleteResponse { created, modified, name, uid }
DELETE/accounts/{account_id}/calls/apps/{app_id}