v1
latestOpenAPI 3.0.02026-07-141,4077,1665.2 MBOrg Connections
Create Org Connection
Create a new org connection between the current org and a target org.
post/api/v2/org_connections
Request body
Example request
{
"data": {
"attributes": {
"connection_types": [
"logs"
]
},
"relationships": {
"sink_org": {
"data": {
"id": "f9ec96b0-8c8a-4b0a-9b0a-1b2c3d4e5f6a",
"name": "Example Org",
"type": "orgs"
}
}
},
"type": "org_connection"
}
}Response
OK
Example response
{
"data": {
"attributes": {
"connection_types": [
"logs",
"metrics"
],
"created_at": "2023-01-01T12:00:00Z"
},
"id": "f9ec96b0-8c8a-4b0a-9b0a-1b2c3d4e5f6a",
"relationships": {
"created_by": {
"data": {
"id": "usr123abc456",
"name": "John Doe",
"type": "users"
}
},
"sink_org": {
"data": {
"id": "f9ec96b0-8c8a-4b0a-9b0a-1b2c3d4e5f6a",
"name": "Example Org",
"type": "orgs"
}
},
"source_org": {
"data": {
"id": "f9ec96b0-8c8a-4b0a-9b0a-1b2c3d4e5f6a",
"name": "Example Org",
"type": "orgs"
}
}
},
"type": "org_connection"
}
}