Skip to main content
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": "[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
    }
  ]
}

Authentication

Include your API key in the request’s Authorization header.

Response

success
boolean
Indicates if the request was successful
data
array
Array of connection objects with the following properties:
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
    }
  ]
}