curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#GUSTO_CREATE_EMPLOYEE' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "GUSTO_CREATE_EMPLOYEE",
"parameters": {
"companyId": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"middleInitial": "<string>",
"dateOfBirth": "<string>",
"email": "<string>",
"ssn": "<string>",
"selfOnBoarding": "false"
}
}'
curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#GUSTO_CREATE_EMPLOYEE' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "GUSTO_CREATE_EMPLOYEE",
"parameters": {
"companyId": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"middleInitial": "<string>",
"dateOfBirth": "<string>",
"email": "<string>",
"ssn": "<string>",
"selfOnBoarding": "false"
}
}'
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Your Paragon Project ID
Success
Was this page helpful?