The Skype API for WinJS provides some documentation.
Unfortunately, examples are provided in JavaScript.
Here is the source syntax:
await Windows.System.Launcher.LaunchUriAsync(new Uri("skype:"));
Someone’s call will look something like this: Example: one-to-one dialogue
await Windows.System.Launcher.LaunchUriAsync(new Uri("skype:skype.test.user.1?call"));
However, I do not know how to get Skype contacts in another application. This can be done with contacts in the hub people app.
See an example application here .
source share