curl command example for Applications
The following curl
command creates a new application in your Personio account:
curl -X POST https://api.personio.de/recruiting/applicant \
-F 'company_id={your company id}' \
-F 'access_token={your company access token}' \
-F 'job_position_id={your job position id}' \
-F 'first_name=John' \
-F 'last_name=Doe' \
-F 'email=johndoe@test.com'
Updated almost 4 years ago