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