Skip to main content
GET
/
api
/
zapier
/
getTeamConnections
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
    }
  ]
}

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/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
    }
  ]
}