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": "john.doe@example.com",
"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
}
]
}
API Endpoints
Get User Connections
Fetches connections for a user identified by an API Key
GET
/
api
/
zapier
/
getConnections
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": "john.doe@example.com",
"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
}
]
}
Authentication
Include your API key in the request’s Authorization header.Response
Indicates if the request was successful
Array of connection objects with the following properties:
Show Connection Object
Show Connection Object
Unique identifier for the connection
Full name of the connection
Job position/title
Company name
Email address
Phone number
Geographic location
URL to profile picture
Additional notes about the connection
Timestamp of when the connection was created
Array of tags associated with the connection
ID of the user who owns this connection
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": "john.doe@example.com",
"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
}
]
}
⌘I

