An official .NET library for interacting with https://pointauc.com.
Support author of https://pointauc.com @kozjar
- You need to authorize with one of the existing integrations to create an account.
- Navigate to the https://pointauc.com/settings.
- Find “Personal Token” section at the bottom and copy that value.
- 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);