Since July 6, 2023, Atlassian has no longer been used for Release Notes or knowledge base articles.
* Find Release Notes here (https://support.mycontactcenter.net/app/articles/detail/a_id/23378/) and articles here (https://support.mycontactcenter.net/app/main).
* Authenticated Partners can access content here (https://support.mycontactcenter.net/cc/sso/authenticator/oauth/authorize/imcontrolpanel?redirect=main&source=mycontactcenter)


Registering multiple dial out entries

This method registers multiple dial out entries in a transactional manner. That is to say, either all entries are registered successfully or none of them in case of an error.
Method Signature:
ScheduledDialoutEntriesRegistrationResponse RegisterMultipleEntries(string sessionId, string listCode, string queueName, List<ExternalScheduledDialoutEntry> entries);
Parameters:

Parameter Name

Description

sessionId

ID of the session opened by invoking OpenSession method

listCode

A list identifier the entries will be associated with after registration

queueName

Name of the queue the entries will be registered under.
The name must match that of an existing outbound queue.

entries

A list of entries to be registered.
At the time of writing this document the number of items in the list is limited to 100 records by default; however this does not limit the amount of entries in a list. Large lists can be divided into smaller groups of 100 entries each and registered by invoking this method as many times as needed.


For additional information related to the "ExternalScheduledDialoutEntry" data type please refer to the "RegisterSingleEntry" method.
The method returns an object of type "ScheduledDialoutEntriesRegistrationResponse" that contains the following fields:

Parameter Name

Description

Errors

A list of strings containing the data validation errors found while processing the list.

listCode

A list identifier the entries will be associated with after registration

queueName

Name of the queue the entries will be registered under


Field Name

Type

Description

DataValidationErrors

String array

A strings list containing the data validation errors found while processing the list.
Each string will be in the format "Line #. Error #. Description"

ErrorCode

Integer

Error code describing the outcome of the operation (0 = Success)

Description

String

Message describing the error condition if applicable



Since July 6, 2023, Atlassian has no longer been used for Release Notes or knowledge base articles.
* Find Release Notes here (https://support.mycontactcenter.net/app/articles/detail/a_id/23378/) and articles here (https://support.mycontactcenter.net/app/main).
* Authenticated Partners can access content here (https://support.mycontactcenter.net/cc/sso/authenticator/oauth/authorize/imcontrolpanel?redirect=main&source=mycontactcenter)