Skip to main content
PUT
/
connectors
/
datasources
/
{id}
Update existing datasource
import requests

url = "http://api/connectors/connectors/datasources/{id}"

payload = "<string>"
headers = {"Content-Type": "application/json"}

response = requests.put(url, json=payload, headers=headers)

print(response.text)

Path Parameters

id
string
required

The datasource name

Query Parameters

validate
boolean
default:true

Validate when updating datasource

Body

application/json · string

The body is of type string.

Response

default

successful operation