### Get Network for Sender Request Body Source: https://documenter.getpostman.com/view/23808049/2sA2xb5F75 Example JSON payload for the GetMyNetworkForSender endpoint, specifying the page number, page size, and the sender ID for which to retrieve network data. ```JSON { "pageNumber": 0, "pageSize": 100, "senderId": 1234 } ``` -------------------------------- ### cURL Request for IsConnection Source: https://documenter.getpostman.com/view/23808049/2sA2xb5F75 Provides an example of how to make an API request using cURL to check a connection status. It includes the endpoint URL, necessary headers, and the JSON request body. ```curl curl --location 'https://api.heyreach.io/api/public/MyNetwork/IsConnection' \ --header 'X-API-KEY: ' \ --header 'Content-Type: application/json' \ --header 'Accept: text/plain' \ --data '{ "senderAccountId": 0, "leadProfileUrl": "https://www.linkedin.com/in/john_doe/", "leadLinkedInId": null }' ``` -------------------------------- ### Get Network Response Body Source: https://documenter.getpostman.com/view/23808049/2sA2xb5F75 Example response body for the GetMyNetworkForSender endpoint, detailing network items with fields like LinkedIn ID, profile URL, name, headline, and connection details. ```JSON { "totalCount": 1, "items": [ { "linkedin_id": "string", "profileUrl": "string", "firstName": "string", "lastName": "string", "headline": "string", "imageUrl": "string", "location": "string", "companyName": "string", "companyUrl": "string", "position": "string", "about": "string", "connections": 0, "followers": 0, "emailAddress": "string" } ] } ``` -------------------------------- ### Get Network for Sender Source: https://documenter.getpostman.com/view/23808049/2sA2xb5F75 This snippet retrieves a paginated list of network connections for a specified sender. It uses a POST request and includes senderId, pageNumber, and pageSize in the JSON request body. Authentication is handled via the X-API-KEY header. ```cURL curl --location 'https://api.heyreach.io/api/public/webhooks/CreateWebhook' \ --header 'X-API-KEY: ' \ --header 'Content-Type: application/json' \ --header 'Accept: text/plain' \ --data '{ "pageNumber": 0, "pageSize": 100, "senderId": 1234 }' ``` -------------------------------- ### Test API Key Authentication Source: https://documenter.getpostman.com/view/23808049/2sA2xb5F75 This snippet demonstrates how to test your API key by sending a request to the CheckApiKey endpoint. It requires the X-API-KEY header with your provided API key. ```cURL curl --location 'https://api.heyreach.io/api/public/auth/CheckApiKey' --header 'X-API-KEY: ' ``` -------------------------------- ### JSON Response for IsConnection Source: https://documenter.getpostman.com/view/23808049/2sA2xb5F75 Illustrates the expected JSON response format when checking a connection status via the API. It contains a boolean indicating whether a connection exists. ```json { "isConnection": true } ``` -------------------------------- ### Delete Webhook Source: https://documenter.getpostman.com/view/23808049/2sA2xb5F75 This API call deletes an existing webhook. It requires the webhookId as a query parameter and the X-API-KEY header for authentication. The request method is DELETE. ```cURL curl --location --request DELETE 'https://api.heyreach.io/api/public/webhooks/DeleteWebhook?webhookId=1234' \ --header 'X-API-KEY: ' \ --header 'Content-Type: application/json' \ --header 'Accept: text/plain' \ --data '' ``` -------------------------------- ### JSON Request Body for IsConnection Source: https://documenter.getpostman.com/view/23808049/2sA2xb5F75 Defines the structure of the JSON request body for the IsConnection API endpoint. It includes senderAccountId and optional leadProfileUrl or leadLinkedInId. ```json { "senderAccountId": 0, "leadProfileUrl": "string", "leadLinkedInId": "string" } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.