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

# Update Settings

> Configure the Sales Navigator Profile Scraper settings

Configure your Sales Navigator Profile Scraper squid settings. Enable email and mobile enrichment to find contact details for the profiles you scrape.

## Headers

<ParamField header="Authorization" type="string" required>
  Your API authentication token. Value: `Token YOUR_API_KEY`
</ParamField>

<ParamField header="Content-Type" type="string" required>
  Request body format. Value: `application/json`
</ParamField>

## Optional Functions

Enable these in the `params.functions` object:

| Function               | Type    | Default | Description                                                                                         |
| ---------------------- | ------- | ------- | --------------------------------------------------------------------------------------------------- |
| **email\_enrichment**  | boolean | true    | Find email addresses for each profile (9 credits per profile where an email is found)               |
| **mobile\_enrichment** | boolean | false   | Find mobile phone numbers for each profile (300 credits per profile where a mobile number is found) |

## Squid Settings

Configure general squid settings:

| Setting                     | Type    | Description                                               |
| --------------------------- | ------- | --------------------------------------------------------- |
| **name**                    | string  | Display name for your squid configuration                 |
| **concurrency**             | integer | Number of parallel scraping threads (default: 1)          |
| **accounts**                | array   | Array of linked Sales Navigator account hashes (required) |
| **export\_unique\_results** | boolean | Export only unique results (deduplicated)                 |
| **to\_complete**            | boolean | Run until all tasks complete                              |
| **no\_line\_breaks**        | boolean | Remove line breaks from results                           |

<Warning>
  `email_enrichment` is enabled by default and costs 9 credits per profile where an email is found. Disable it if you don't need email data.
</Warning>

<Warning>
  `mobile_enrichment` costs 300 credits per profile where a mobile number is found. Only enable when mobile numbers are specifically required.
</Warning>

<Note>
  This scraper requires a synced Sales Navigator account. Add your LinkedIn Sales Navigator cookies in the Accounts section before running.
</Note>

## Code Examples

<CodeGroup>
  ```bash cURL theme={null}
  curl -X POST "https://api.lobstr.io/v1/squids/YOUR_SQUID_HASH" \
    -H "Authorization: Token YOUR_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{
      "name": "Sales Nav Profile Scraper (1)",
      "concurrency": 1,
      "export_unique_results": true,
      "to_complete": false,
      "no_line_breaks": true,
      "params": {
        "functions": {
          "email_enrichment": true,
          "mobile_enrichment": false
        }
      }
    }'
  ```

  ```python Python theme={null}
  import requests

  API_KEY = "YOUR_API_KEY"
  BASE_URL = "https://api.lobstr.io/v1"
  headers = {"Authorization": f"Token {API_KEY}"}

  squid_id = "YOUR_SQUID_HASH"

  response = requests.post(f"{BASE_URL}/squids/{squid_id}",
      headers=headers,
      json={
          "name": "Sales Nav Profile Scraper (1)",
          "concurrency": 1,
          "export_unique_results": True,
          "to_complete": False,
          "no_line_breaks": True,
          "params": {
              "functions": {
                  "email_enrichment": True,    # 9 credits per profile with email
                  "mobile_enrichment": False   # 300 credits per profile with mobile
              }
          }
      }
  )

  data = response.json()
  print(f"Settings updated: {data['name']}")
  ```
</CodeGroup>

## Response

```json 201 theme={null}
{
  "name": "Sales Nav Profile Scraper (1)",
  "concurrency": 1,
  "export_unique_results": true,
  "to_complete": false,
  "no_line_breaks": true,
  "params": {
    "functions": {
      "email_enrichment": true,
      "mobile_enrichment": false
    }
  }
}
```
