curl --request POST \
--url https://api.example.com/v1/source-connections \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"short_name": "<string>",
"readable_collection_id": "<string>",
"description": "<string>",
"config": {},
"authentication": {
"credentials": {},
"access_token": "<string>",
"refresh_token": "<string>",
"expires_at": "<string>",
"redirect_uri": "<string>",
"client_id": "<string>",
"client_secret": "<string>",
"provider_readable_id": "<string>",
"provider_config": {}
},
"schedule": {
"cron": "<string>",
"continuous": true,
"cursor_field": "<string>"
},
"sync_immediately": true,
"redirect_url": "<string>"
}
'