cURL
curl --request POST \ --url https://api.linkupapi.com/v1/recruiter/cv \ --header 'Content-Type: application/json' \ --header 'x-api-key: <x-api-key>' \ --data '{ "application_id": "<string>", "login_token": "<string>", "country": "<string>" }'
Retrieve a candidate’s CV document from a LinkedIn job application
curl --request POST \ --url https://api.linkupapi.com/v1/recruiter/cv \ --header 'Content-Type: application/json' \ --header 'x-api-key: YOUR_API_KEY' \ --output downloaded_cv.pdf \ --data '{ "login_token": "YOUR_LINKEDIN_LOGIN_TOKEN", "country": "FR", "application_id": "31461710693" }'
Was this page helpful?