A shared tag with AI prompts and code snippets
From workspace: EveryPay
Team: Main
Total snippets: 1
1 snippet
GET /v4/tokens/{token}/status https://igw-demo.every-pay.com/api/v4/tokens/{token}/status https://pay.every-pay.eu/api/v4/tokens/{token}/status
const fetch = require('node-fetch'); let url = 'https://igw-demo.every-pay.com/api/v4/tokens/%7Btoken%7D/status?api_username=SOME_STRING_VALUE'; let options = {method: 'GET', headers: {Authorization: 'Basic REPLACE_BASIC_AUTH'}}; fetch(url,...