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