curl --request GET \
--url https://api.getmycard.eu/api/zapier/getConnections \
--header 'Authorization: YOUR_API_KEY'
{
"success": true,
"data": [
{
"id": 1,
"name": "John Doe",
"position": "Manager",
"company": "ABC Corp",
"email": "[email protected]",
"phone": "+1234567890",
"location": "New York, USA",
"picture": "url_to_picture",
"note": "Met at conference",
"createdAt": "2023-05-01T00:00:00Z",
"tags": ["tag1", "tag2"],
"userId": 123
}
]
}
Fetches connections for a user identified by an API Key
curl --request GET \
--url https://api.getmycard.eu/api/zapier/getConnections \
--header 'Authorization: YOUR_API_KEY'
{
"success": true,
"data": [
{
"id": 1,
"name": "John Doe",
"position": "Manager",
"company": "ABC Corp",
"email": "[email protected]",
"phone": "+1234567890",
"location": "New York, USA",
"picture": "url_to_picture",
"note": "Met at conference",
"createdAt": "2023-05-01T00:00:00Z",
"tags": ["tag1", "tag2"],
"userId": 123
}
]
}
Show Connection Object
curl --request GET \
--url https://api.getmycard.eu/api/zapier/getConnections \
--header 'Authorization: YOUR_API_KEY'
{
"success": true,
"data": [
{
"id": 1,
"name": "John Doe",
"position": "Manager",
"company": "ABC Corp",
"email": "[email protected]",
"phone": "+1234567890",
"location": "New York, USA",
"picture": "url_to_picture",
"note": "Met at conference",
"createdAt": "2023-05-01T00:00:00Z",
"tags": ["tag1", "tag2"],
"userId": 123
}
]
}