curl --request GET \
--url https://api.getmycard.eu/api/zapier/getTeamConnections \
--header 'Authorization: YOUR_API_KEY'
{
"success": true,
"data": [
{
"id": 1,
"name": "Jane Smith",
"position": "Developer",
"company": "XYZ Inc",
"email": "[email protected]",
"phone": "+9876543210",
"location": "San Francisco, USA",
"picture": "url_to_picture",
"note": "Collaborated on project",
"createdAt": "2023-04-20T00:00:00Z",
"tags": ["tagA", "tagB"],
"userId": 456
}
]
}
Fetches connections for all users linked to an enterprise identified by an API Key
curl --request GET \
--url https://api.getmycard.eu/api/zapier/getTeamConnections \
--header 'Authorization: YOUR_API_KEY'
{
"success": true,
"data": [
{
"id": 1,
"name": "Jane Smith",
"position": "Developer",
"company": "XYZ Inc",
"email": "[email protected]",
"phone": "+9876543210",
"location": "San Francisco, USA",
"picture": "url_to_picture",
"note": "Collaborated on project",
"createdAt": "2023-04-20T00:00:00Z",
"tags": ["tagA", "tagB"],
"userId": 456
}
]
}
Show Connection Object
curl --request GET \
--url https://api.getmycard.eu/api/zapier/getTeamConnections \
--header 'Authorization: YOUR_API_KEY'
{
"success": true,
"data": [
{
"id": 1,
"name": "Jane Smith",
"position": "Developer",
"company": "XYZ Inc",
"email": "[email protected]",
"phone": "+9876543210",
"location": "San Francisco, USA",
"picture": "url_to_picture",
"note": "Collaborated on project",
"createdAt": "2023-04-20T00:00:00Z",
"tags": ["tagA", "tagB"],
"userId": 456
}
]
}