Share via


AzureCommunicationOutboundCallAdapterArgs type

Arguments for creating the Azure Communication Services implementation of CallAdapter.

These arguments are used to create an outbound call scenarios.

Note: displayName can be a maximum of 256 characters.

type AzureCommunicationOutboundCallAdapterArgs = {
  alternateCallerId?: string
  credential: CommunicationTokenCredential
  displayName: string
  options?: AzureCommunicationCallAdapterOptions
  targetCallees: StartCallIdentifier[]
  userId: CommunicationUserIdentifier
}