Last updated 2 months ago
OK
const response = await fetch('https://api.apono.io/api/v2/integrations', { method: 'GET', headers: {}, }); const data = await response.json();
{ "data": [ { "id": "text", "name": "text", "type": "text", "status": "Initializing", "details": "text", "provisioner_id": "text", "connection": {}, "last_sync_time": 0, "secret_config": {}, "connected_resource_types": [ "text" ], "custom_access_details": "text" } ], "pagination": { "total": 0, "limit": 0, "offset": 0 } }
const response = await fetch('https://api.apono.io/api/v2/integrations/{id}', { method: 'DELETE', headers: {}, }); const data = await response.json();
{ "message": "text" }
const response = await fetch('https://api.apono.io/api/v2/integrations/{id}/refresh', { method: 'POST', headers: {}, }); const data = await response.json();
const response = await fetch('https://api.apono.io/api/v3/integrations/resources/{resource_id}/user-tags', { method: 'GET', headers: {}, }); const data = await response.json();
{ "resource_id": "text" }
const response = await fetch('https://api.apono.io/api/v2/integrations-catalog/{type}', { method: 'GET', headers: {}, }); const data = await