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
boolean
Indicates if the request was successful
array
Array of connection objects with the following properties:
Show Connection Object
Show Connection Object
integer
Unique identifier for the connection
string
Full name of the connection
string
Job position/title
string
Company name
string
Email address
string
Phone number
string
Geographic location
string
URL to profile picture
string
Additional notes about the connection
string
Timestamp of when the connection was created
array
Array of tags associated with the connection
integer
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

