1.0.5 • Published 5 years ago

amazon-gc v1.0.5

Weekly downloads
24
License
ISC
Repository
github
Last release
5 years ago

Amazon-GC

API client for using Amazon Incentives API to create gift cards on demand.

Install

npm install amazon-gc

Usage

const { createGiftCard } = require('amazon-gc')

const request = {
    amount: 20,
    currencyCode: 'USD',
    partnerId: 'yourPartnerId',
    accessKey: 'yourAccessKey',
    secretKey: 'yourSecretKey',
    environment: 'sandbox',
    endpoint: 'NA',
}

async function runSample() {
    const res = await createGiftCard(request);
    console.log(`Amazon gift card is ${JSON.stringify(res)}`)
}

runSample().catch(console.error)

Other clients

Problems

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago