Get Integration Resource
Endpoint: GET /api/integrations/provider/{name}/integration/{integration_name}
Retrieves an integration resource from Conductor cluster. Integration resources apply to AI/LLMs, vector databases, and RDBMS, where the resources are models, indexes, and tables respectively.
Path Parameters
| Parameter | Description | Type | Required/ Optional |
|---|---|---|---|
| name | The name of the integration resource to retrieve. This is the integration name, not the provider name. For example, if you have created an OpenAI integration named openAI, use openAI. | string | Required. |
| integration_name | The name of the specific resource to retrieve, which can be:
| string | Required. |
Response
Returns the integration resource object with its configuration details and enabled status.
Examples
Get an integration resource
The following request retrieves the gpt-4o model resource from the openAI integration.
Request
curl -X 'GET' \
'https://<YOUR-SERVER-URL>/api/integrations/provider/openAI/integration/gpt-4o' \
-H 'accept: application/json' \
-H 'X-Authorization: <TOKEN>'
Response
{
"createTime": 1777623244640,
"updateTime": 1777623489870,
"createdBy": "john.doe@acme.com",
"updatedBy": "john.doe@acme.com",
"integrationName": "openAI",
"api": "gpt-4o",
"description": "Updated description for GPT-4o model",
"configuration": {},
"enabled": true,
"tags": []
}