curl --request POST \
--url https://developer.synq.io/api/extensions/atlan/integrations/v1 \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"atlanTenantUrl": "<string>",
"atlanApiToken": "<string>"
}'
{
"integration": {
"workspace": "<string>",
"id": "<string>",
"atlanTenantUrl": "<string>",
"atlanApiToken": "<string>",
"isValid": true,
"isActive": true,
"createdAt": "1s",
"deletedAt": "1s"
}
}
Upserts an integration and validates it by checking if the provided API URL and token are valid.
curl --request POST \
--url https://developer.synq.io/api/extensions/atlan/integrations/v1 \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"atlanTenantUrl": "<string>",
"atlanApiToken": "<string>"
}'
{
"integration": {
"workspace": "<string>",
"id": "<string>",
"atlanTenantUrl": "<string>",
"atlanApiToken": "<string>",
"isValid": true,
"isActive": true,
"createdAt": "1s",
"deletedAt": "1s"
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Success
The response is of type object
.