curl --request POST \
--url https://api.getcargo.io/v1/connection/connectors/{uuid}/dynamicSchema \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"params": "<unknown>"
}
'{
"schema": "<unknown>",
"uiSchema": {}
}Get dynamic schema for a connector
curl --request POST \
--url https://api.getcargo.io/v1/connection/connectors/{uuid}/dynamicSchema \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"params": "<unknown>"
}
'{
"schema": "<unknown>",
"uiSchema": {}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Connector identifier.
^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12})$Request body schema.
Parameters for schema generation.
Was this page helpful?