Skip to content

Commit

Permalink
incrorrect facet URL
Browse files Browse the repository at this point in the history
  • Loading branch information
aakarim committed Feb 29, 2024
1 parent 68c91d4 commit f9e112d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions source/includes/_linkedin.md
Original file line number Diff line number Diff line change
Expand Up @@ -492,15 +492,15 @@ Parameter | Description
start | The index of the first candidate you would like to return. The default is 0.

```shell
curl "http://api.lix-it.com/v1/li/recruiter/search/people" \
curl "https://api.lix-it.com/v1/li/recruiter/search/people" \
-H "Authorization: lixApiKey"
```

```python
import requests
import urllib.parse

linkedin_url = "http://api.lix-it.com/v1/li/recruiter/search/people"
linkedin_url = "https://api.lix-it.com/v1/li/recruiter/search/people"

payload={
"start": 0,
Expand Down Expand Up @@ -542,7 +542,7 @@ If you are trying to build a search URL, you can use this endpoint to get the ty
<aside class="notice">This endpoint is free of charge to customers who have available credits in their account.</aside>

### HTTP Request
`GET https://api.lix-it.com/v1/search/recruiter/facet`
`GET http://api.lix-it.com/v1/li/recruiter/search/facet`

### URL Parameters

Expand All @@ -564,14 +564,14 @@ start | The index of the first typeahead you would like to return. The defau
viewer_id | The LinkedIn ID of the account you would like to view this search as

```shell
curl "https://api.lix-it.com/v1/search/recruiter/facet?query=Javascrip&type=skill&count=100&start=0" \
curl "http://api.lix-it.com/v1/li/recruiter/search/facet?query=Javascrip&type=skill&count=100&start=0" \
-H "Authorization: lixApiKey"
```

```python
import requests

url = "https://api.lix-it.com/v1/search/recruiter/facet?query=Javascrip&type=skill&count=100&start=0"
url = "http://api.lix-it.com/v1/li/recruiter/search/facet?query=Javascrip&type=skill&count=100&start=0"


payload={}
Expand Down

0 comments on commit f9e112d

Please sign in to comment.