Skip to main content
getSendSettings() Returns the current DailySendSettings object, or null if updateSendSettings() has never been called and no call has been joined. This method is synchronous — it does not return a Promise.

Return value

Returns DailySendSettings | null. See updateSendSettings() for a full explanation of the DailySendSettings structure.

Example

const settings = call.getSendSettings();

if (settings?.video?.maxQuality === 'low') {
  console.log('Video quality is currently limited to low');
}

See also