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