- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- Administrator's Guide
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
Cross-organization visibility is in beta.
Cross-organization visibility allows customers to share data between different organizations in the same account, and show insights from multiple organizations in one place.
This document describes how to configure cross-organization connections through the API. To configure connections through the UI, see cross-organization visibility.
Configure connections through the public API /api/v2/org_connections
endpoint. The application key you use to authenticate to the endpoint must have the org_management
permission.
List all the connections this organization participates in, either as a source organization or as a destination organization. Listing connections requires the Org Connections Read permission.
GET https://{datadog_site}/api/v2/org_connections?api_key={datadog_api_key}&application_key={datadog_application_key}
Creates a connection from this organization to the destination organization. You must perform this operation in the to-be-source organization. Creating connections requires the Org Connections Write permission.
POST https://{datadog_site}/api/v2/org_connections?api_key={datadog_api_key}&application_key={datadog_application_key}
Note: The payload of this call requires the destination organization UUID. Get the destination organization’s UUID from the “List your managed organizations” endpoint.
Content-Type: application/json
{
"data": {
"type": "org_connection",
"relationships": {
"sink_org": {
"data": {
"type": "orgs",
"id": "{{the destination organization UUID}}"
}
}
}
}
}
Deletes a connection. Perform this operation either from the source organization or the destination organization. Reference the connection to delete with its ID, which you can get from the List connections request. Deleting connections requires the Org Connections Write permission.
DELETE https://{datadog_site}/api/v2/org_connections/{connection_id}?api_key={datadog_api_key}&application_key={datadog_application_key}