Skip to content

An official .NET library for interacting with Pointauc.

License

Notifications You must be signed in to change notification settings

Pointauc/Pointauc.Api

Repository files navigation

Pointauc.Api

An official .NET library for interacting with https://pointauc.com.

Support author of https://pointauc.com @kozjar

Download

Nuget

Example

  1. You need to authorize with one of the existing integrations to create an account.
  2. Navigate to the https://pointauc.com/settings.
  3. Find “Personal Token” section at the bottom and copy that value.
  4. You should put this token into Client initialization.
// Init client.
IPointaucClient client = new PointaucClient("token_value");

// Init Bid.
Bid bid = new Bid()
{
	Cost = 100,
	Message = "Test message",
};

// Make a bid.
await client.Bids(bid);