Skip to main content
POST
/
v4
/
knowledge-base-data-sources
/
{knowledge_base_data_source_id}
/
verify
Python
import os
from scale_gp import SGPClient

client = SGPClient(
    api_key=os.environ.get("SGP_API_KEY"),  # This is the default and can be omitted
)
response = client.knowledge_base_data_sources.verify(
    "knowledge_base_data_source_id",
)
print(response)
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

knowledge_base_data_source_id
string
required

Response

Successful Response