curl --request GET \
--url https://platform.versori.com/api/connect/v1/o/{organisation_id}/connectors/{connector_id}/connections \
--header 'Authorization: Bearer <token>'{
"totalCount": 123,
"next": "<string>",
"prev": "<string>",
"items": [
{
"id": "<string>",
"name": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
}ListConnectorConnections returns a paginated list of Connections, ordered with most recently updated first. Customising the sort behaviour is not currently supported but may be added in the future. Similarly with filtering, this will be implemented in a future release.
curl --request GET \
--url https://platform.versori.com/api/connect/v1/o/{organisation_id}/connectors/{connector_id}/connections \
--header 'Authorization: Bearer <token>'{
"totalCount": 123,
"next": "<string>",
"prev": "<string>",
"items": [
{
"id": "<string>",
"name": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
}