Provisioning
Get Connection by ID
VMS
Identity Provider (IDP)
Provisioning
- POSTCreate Organization
- GETList Organizations
- GETGet Organization by ID
- DELSoft Delete Organization By Id And Environment Id
- POSTCreate Connection
- GETList Connections
- GETGet Connection by ID
- GETList Jobs by Connection ID
- GETTest Connection Credentials by Connection ID
- DELDelete Connection
- PATCHUpdate Connection by ID and Organization ID
Connectors
Enrichments
Provisioning
Get Connection by ID
Retrieve a connection by its ID (Leen’s UUID).
GET
/
provisioning
/
organizations
/
{organization_id}
/
connections
/
{connection_id}
curl --request GET \
--url https://api.leen.dev/v1/provisioning/organizations/{organization_id}/connections/{connection_id} \
--header 'X-API-KEY: <api-key>'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"vendor": "<string>",
"is_active": true,
"refresh_interval_secs": 123,
"timeout_secs": 123,
"organization_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"oauth2_authorize_url": "<string>",
"identifier": "<string>",
"state": "PENDING",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"health": {
"name": "HEALTHY",
"status": "HEALTHY",
"description": "<string>",
"resolution_owner": "LEEN",
"details": [
{
"data_export_type": "alerts",
"endpoint": "<string>"
}
]
},
"organization_name": "<string>"
}
Authorizations
Headers
Response
200
application/json
Successful Response
The response is of type object
.
curl --request GET \
--url https://api.leen.dev/v1/provisioning/organizations/{organization_id}/connections/{connection_id} \
--header 'X-API-KEY: <api-key>'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"vendor": "<string>",
"is_active": true,
"refresh_interval_secs": 123,
"timeout_secs": 123,
"organization_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"oauth2_authorize_url": "<string>",
"identifier": "<string>",
"state": "PENDING",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"health": {
"name": "HEALTHY",
"status": "HEALTHY",
"description": "<string>",
"resolution_owner": "LEEN",
"details": [
{
"data_export_type": "alerts",
"endpoint": "<string>"
}
]
},
"organization_name": "<string>"
}