Was this helpful?
Get a list of all integrations for a team
List of integrations
Get details of a specific integration
Integration token
Integration details
const response = await fetch('https://api.spike.sh/integrations', { method: 'GET', headers: { "x-api-key": "text", "x-team-id": "text" }, }); const data = await response.json();
const response = await fetch('https://api.spike.sh/integrations/{token}', { method: 'GET', headers: { "x-api-key": "text", "x-team-id": "text" }, }); const data = await response.json();