Last updated 5 months ago
Get all configured source connections
OK
Retrieve details of a source connection
const response = await fetch('https://sapphire.contextdata.ai/api/workspace/source_connections', { method: 'GET', headers: { "Authorization": "Bearer <token>" }, }); const data = await response.json();
const response = await fetch('https://sapphire.contextdata.ai/api/workspace/source_connection/{connection_identifier}', { method: 'GET', headers: { "Authorization": "Bearer <token>" }, }); const data = await response.json();