> ## Documentation Index
> Fetch the complete documentation index at: https://docs.getmycard.eu/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Enterprise User Connections

> Fetches connections for all users linked to an enterprise identified by an API Key

### Authentication

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

### Response

<ResponseField name="success" type="boolean">
  Indicates if the request was successful
</ResponseField>

<ResponseField name="data" type="array">
  Array of connection objects with the following properties:

  <Expandable title="Connection Object">
    <ResponseField name="id" type="integer">
      Unique identifier for the connection
    </ResponseField>

    <ResponseField name="name" type="string">
      Full name of the connection
    </ResponseField>

    <ResponseField name="position" type="string">
      Job position/title
    </ResponseField>

    <ResponseField name="company" type="string">
      Company name
    </ResponseField>

    <ResponseField name="email" type="string">
      Email address
    </ResponseField>

    <ResponseField name="phone" type="string">
      Phone number
    </ResponseField>

    <ResponseField name="location" type="string">
      Geographic location
    </ResponseField>

    <ResponseField name="picture" type="string">
      URL to profile picture
    </ResponseField>

    <ResponseField name="note" type="string">
      Additional notes about the connection
    </ResponseField>

    <ResponseField name="createdAt" type="string">
      Timestamp of when the connection was created
    </ResponseField>

    <ResponseField name="tags" type="array">
      Array of tags associated with the connection
    </ResponseField>

    <ResponseField name="userId" type="integer">
      ID of the user who owns this connection
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```bash theme={null}
  curl --request GET \
    --url https://api.getmycard.eu/api/zapier/getTeamConnections \
    --header 'Authorization: YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "data": [
      {
        "id": 1,
        "name": "Jane Smith",
        "position": "Developer",
        "company": "XYZ Inc",
        "email": "jane.smith@example.com",
        "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
      }
    ]
  }
  ```
</ResponseExample>
