curl --request PATCH \
--url https://api.example.com/v1/source-connections/{id} \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"description": "<string>",
"config": {},
"schedule": {
"cron": "<string>",
"continuous": true,
"cursor_field": "<string>"
},
"authentication": {
"credentials": {}
}
}
'