Learn
Help
Socials
© 2025 make.com
Last updated 1 day ago
Retrieves details of a connection with a given ID.
The ID of the connection. You can get connection ID’s of all your connections with the the List connections endpoint.
128
Successful response
const response = await fetch('https://eu1.make.com/api/v2/connections/{connectionId}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "connection": { "id": 0, "name": "text", "accountName": "text", "accountLabel": "text", "packageName": "text", "expire": "2025-01-11T06:12:41.807Z", "metadata": { "value": "text", "type": "string" }, "teamId": 0, "theme": "text", "upgradeable": false, "scopesCnt": 0, "scoped": false, "accountType": "text", "editable": false, "uid": "text", "connectedSystemId": "text", "organizationId": 0, "scopes": [ { "id": "text", "name": "text", "account": "text" } ] } }