curl --request POST \
--url https://developer.synq.io/api/datachecks/testsuggestions/v1 \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"suggestions": [
{
"acceptedValuesTest": {
"columnName": "<string>",
"acceptedValues": [
"<string>"
]
},
"identifier": {
"airflowDag": {
"integrationId": "<string>",
"dagId": "<string>"
}
},
"explanation": "<string>",
"entitySynqPath": "<string>",
"id": "<string>"
}
]
}'
{}
curl --request POST \
--url https://developer.synq.io/api/datachecks/testsuggestions/v1 \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"suggestions": [
{
"acceptedValuesTest": {
"columnName": "<string>",
"acceptedValues": [
"<string>"
]
},
"identifier": {
"airflowDag": {
"integrationId": "<string>",
"dagId": "<string>"
}
},
"explanation": "<string>",
"entitySynqPath": "<string>",
"id": "<string>"
}
]
}'
{}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Success
The response is of type object
.