providers

get

/services/{version}/installation/aiservice/providers

Required Role: Operator

Retrieve the AI Service Providers.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

get the AI Service Providers
Body ()
Root Schema : Oracle GoldenGate Collection
Type: object
Title: Oracle GoldenGate Collection
Show Source
Nested Schema : items
Type: array
Minimum Number of Items: 0
Maximum Number of Items: 32767
Show Source
Nested Schema : items
Type: object
Additional Properties Allowed: true
Show Source
Nested Schema : status
Item status
Match Any
Show Source
  • Allowed Values: [ "starting", "running", "stopped", "killed", "abended" ]
  • Default Value: stopped
    Allowed Values: [ "running", "stopping", "stopped", "killed", "uninitialized" ]
Example Response (application/json)
{
    "$schema":"api:standardResponse",
    "links":[
        {
            "rel":"canonical",
            "href":"https://localhost:9000/services/v2/installation/aiservice/providers",
            "mediaType":"application/json"
        },
        {
            "rel":"self",
            "href":"https://localhost:9000/services/v2/installation/aiservice/providers",
            "mediaType":"application/json"
        },
        {
            "rel":"describedby",
            "href":"https://localhost:9000/services/v2/metadata-catalog/providers",
            "mediaType":"application/schema+json"
        }
    ],
    "messages":[
    ],
    "response":{
        "$schema":"ogg:collection",
        "items":[
            {
                "id":"voyage1",
                "name":"Voyage AI",
                "type":"voyage",
                "baseUrl":"https://api.voyageai.com/v1",
                "description":"Voyage AI embedding provider",
                "authentication":{
                    "type":"api_key",
                    "configured":true
                }
            }
        ]
    }
}
Back to Top