Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 403 Bytes

USAGE.md

File metadata and controls

20 lines (17 loc) · 403 Bytes
using Shippo;
using Shippo.Models.Requests;
using Shippo.Models.Components;

var sdk = new ShippoSDK(
    apiKeyHeader: "<YOUR_API_KEY_HERE>",
    shippoApiVersion: "2018-02-08"
);

var res = await sdk.Addresses.ListAsync(
    page: 1,
    results: 5,
    shippoApiVersion: "2018-02-08"
);

// handle response