curl --request PUT \ --url https://api.harmonyforstaffing.com/api/candidates/456 \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "firstName": "John", "lastName": "Doe", "email": "[email protected]", "phone": "+1-555-555-5555", "address": { "address1": "123 Main St", "city": "San Francisco", "state": "CA", "zip": "94105", "countryCode": "US" }, "notes": "Excellent communication skills, available immediately", "profession": "Software Engineer", "specialty": "Frontend Development", "status": "ACTIVE" }'
{ "id": 456, "firstName": "John", "lastName": "Doe", "email": "[email protected]", "phone": "+1-555-555-5555", "address": { "address1": "123 Main St", "city": "San Francisco", "state": "CA", "zip": "94105", "countryCode": "US" }, "notes": "Excellent communication skills, available immediately", "profession": "Software Engineer", "specialty": "Frontend Development", "status": "ACTIVE", "dateAdded": 1679253000 }
Update an existing candidate
Show Address fields