This endpoint allows you to fetch data about the Gateways of your Team.
Last updated 1 month ago
OK
const response = await fetch('https://integration.goodaccess.com/api/v1/gateway/<gateway-id>', { method: 'GET', headers: { "Authorization": "Bearer <token>" }, }); const data = await response.json();
const response = await fetch('https://integration.goodaccess.com/api/v1/gateways', { method: 'GET', headers: { "Authorization": "Bearer <token>" }, }); const data = await response.json();