Using ads-js with vtex.local

TypeScript integration

✓ Official SDK
Install
npm install ads-js
Quick start
import Ads_js from 'ads-js';

const client = new Ads_js({ apiKey: "YOUR_API_KEY" });
Get GiftCard by ID
curl \
  -H "X-VTEX-API-AppKey: $API_KEY" \
  https://vtex.local/giftcards/{giftCardID}
Get GiftCard Transactions
curl \
  -H "X-VTEX-API-AppKey: $API_KEY" \
  https://vtex.local/giftcards/{giftCardID}/transactions
Get GiftCard Transaction by ID
curl \
  -H "X-VTEX-API-AppKey: $API_KEY" \
  https://vtex.local/giftcards/{giftCardID}/transactions/{transactionID}
SDK on GitHub 📄 API Docs
SDK
ads-js
TypeScript
API
vtex.local
vtex.local:Giftcard-API
At a glance
Language TypeScript
Endpoints11
Base URLhttps://vtex.local
✓ Official