curl --request GET \
--url https://matcher.sandbox.lerian.net/v1/discovery/connections/{connectionId}/schema \
--header 'Authorization: Bearer <token>'{
"connectionId": "<string>",
"tables": [
{
"tableName": "<string>",
"columns": [
{
"name": "<string>",
"type": "<string>",
"nullable": true
}
]
}
]
}Use this endpoint to retrieve all discovered table schemas for a specific connection.
curl --request GET \
--url https://matcher.sandbox.lerian.net/v1/discovery/connections/{connectionId}/schema \
--header 'Authorization: Bearer <token>'{
"connectionId": "<string>",
"tables": [
{
"tableName": "<string>",
"columns": [
{
"name": "<string>",
"type": "<string>",
"nullable": true
}
]
}
]
}Bearer token authentication (format: "Bearer {token}")
A unique identifier for tracing the request across services.
The unique identifier of the connection.
Esta página foi útil?