Query Parameters
Body
application/json · string
The body is of type string.
Response
default
successful operation
import requests
url = "http://api/connectors/connectors/datasources"
payload = "<string>"
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)import requests
url = "http://api/connectors/connectors/datasources"
payload = "<string>"
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)The body is of type string.
successful operation
Was this page helpful?