Skip to content

pocketstop/sdk-csharp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pocketstop REST API Library for .NET

Pocketstop provides a simple HTTP-based API for interacting with the Pocketstop Social CRM Platform. Learn more at http://www.pocketstop.com

Installation

Via NuGet

Install REST API wrapper:

Install-Package Pocketstop

Sample Usage (Send an SMS)

using Pocketstop;
var pocketstop = new PocketstopRestClient("accountId", "apiKey");
dynamic msg = pocketstop.SendSmsMessage("15551112222", "15553334444", "Can you believe it's this easy to send an SMS?!");

Sample Usage (Generate a QR Code)

using Pocketstop;
var pocketstop = new PocketstopRestClient("accountId", "apiKey");
dynamic qr = pocketstop.GenerateQrCode("Your data here", "150x150");

Releases

No releases published

Packages

No packages published

Languages