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 a single entry

The following steps could be used to register a single entry:

  1. Open an API session
  2. Create and initialize an instance of "ExternalScheduledDialoutEntry"
  3. Send the request
  4. Inspect the result
  5. Close the API session

The c# code below represents the above steps:
var client = new ScheduledDialoutClient();
var openSessionResp = client.OpenSession("myAcctID", "myUsername", "myPassword");
if (openSessionResp.ErrorCode != 0)
{
Console.WriteLine("Auth error {0}. {1}", openSessionResp.ErrorCode, openSessionResp.Description);
return;
}
var entry = new ExternalScheduledDialoutEntry()
{
DialStartDate = DateTime.Now.AddDays(1),
DstName = "Test Call",
DstNumber = "6470009999",
OrgNumber = String.Empty,
Priority = 5,
DailyDialStartMinutesOffset = 9 * 60,
DailyDialEndMinutesOffset = 10 * 60,
ExpiryDate = DateTime.Now.AddDays(3),
DefaultCallerType = String.Empty,
DefaultMainSubject = String.Empty,
DefaultSubsubject = String.Empty,
ScreenPopUrl = String.Empty,
MinutesRetry = 3,
DialSecondsTimeout = 60,
ExtraInfo = String.Empty,
MaxAttempts = 3
};
var resp = client.RegisterSingleEntry(openSessionResp.SessionId, "API-Test ", "Dialout Queue", entry);
if (resp.ErrorCode != 0)
{
Console.WriteLine("Error {0}. {1}", resp.ErrorCode, resp.Description);
}
else
{
Console.WriteLine ("Success");
}
client.CloseSession(openSessionResp.SessionId);


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)