CtrlK
BlogDocsLog inGet started
Tessl Logo

sinch-partnerships-ecosystems/sinch-skills

Official Sinch API skills for AI coding agents — SMS, Voice, Verification, Numbers, Mailgun email, and more.

71

Quality

89%

Does it follow best practices?

Impact

No eval scenarios have been run

SecuritybySnyk

Advisory

Suggest reviewing before use

Overview
Quality
Evals
Security
Files

sdk-init-dotnet.mdskills/sinch-sdks/references/

SDK Installation (.NET)

Project-Scoped Auth (Conversation, Numbers, Fax, EST, etc.)

using Sinch;

var sinch = new SinchClient("YOUR_PROJECT_ID",
                            "YOUR_KEY_ID",
                            "YOUR_KEY_SECRET");

Setting the Conversation API Region

With SDK v2 (upcoming), region will be required for Conversation usage. Set region explicitly now to stay forward-compatible.

using Sinch;
using Sinch.Conversation;

var sinch = new SinchClient("YOUR_PROJECT_ID",
                            "YOUR_KEY_ID",
                            "YOUR_KEY_SECRET",
                            options => options.ConversationRegion = ConversationRegion.Eu); // Us, Eu, or Br

Application-Scoped Auth (Voice, Verification)

With project credentials:

using Sinch;

var sinch = new SinchClient("YOUR_PROJECT_ID",
                            "YOUR_KEY_ID",
                            "YOUR_KEY_SECRET");
var voice = sinch.Voice("YOUR_APP_KEY", "YOUR_APP_SECRET");
var verification = sinch.Verification("YOUR_APP_KEY", "YOUR_APP_SECRET");

Voice/Verification only (no project credentials):

using Sinch;

var sinch = new SinchClient(null, null, null);
var voice = sinch.Voice("YOUR_APP_KEY", "YOUR_APP_SECRET");

skills

README.md

tile.json