Skip to main content

Get Integration Provider

Endpoint: GET /api/integrations/provider/{name}

Retrieves an integration provider from Conductor cluster.

Path parameters

ParameterDescriptionTypeRequired/ Optional
nameThe name of the integration to retrieve.stringRequired.

Response

Returns the integration provider object with its configuration details, enabled status, and associated model count.

Examples

Get an integration provider

Request

curl -X 'GET' \
'https://<YOUR-SERVER-URL/api/integrations/provider/openAI' \
-H 'accept: application/json' \
-H 'X-Authorization: <TOKEN>'

Response

{
"createTime": 1764326634134,
"updateTime": 1764326634134,
"createdBy": "john.doe@acme.com",
"updatedBy": "john.doe@acme.com",
"name": "openAI",
"type": "openai",
"description": "Test",
"category": "AI_MODEL",
"configuration": {
"api_key": "<API-KEY>",
"endpoint": "https://api.openai.com",
"organizationId": ""
},
"enabled": true,
"tags": [],
"modelsCount": 4
}