cURL
curl --request POST \ --url https://api.stardex.ai/v0/persons \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "name": "<string>", "first_name": "<string>", "last_name": "<string>", "linkedin_url": "<string>", "current_job_title": "<string>", "linkedin_location": "<string>", "company_name": "<string>", "email": "jsmith@example.com", "emails": [ "jsmith@example.com" ], "phone_number": "<string>", "phone_numbers": [ "<string>" ], "notes": "<string>", "job_id": "<string>", "job_name": "<string>", "client_name": "<string>", "client_id": "<string>", "external_source_id": "<string>" }'
{ "error": "<string>", "data": { "id": "<string>", "name": "<string>", "linkedin_public_id": "<string>", "current_job_title": "<string>", "company_name": "<string>", "emails": [ { "contact_data_type": "<string>", "value": "<string>" } ], "linkedin_location": "<string>", "phones": [ { "contact_data_type": "<string>", "value": "<string>" } ], "candidate_id": "<string>", "client_contact_id": "<string>", "external_source_id": "<string>" } }
Creates a new person record with comprehensive profile information.
Enter your API key as: Bearer your_api_key_here
Bearer your_api_key_here
Successful response
The response is of type object.
object
Was this page helpful?