Update a Candidate
Developing
Updates the details of a candidate.
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"forename": "string",
"surname": "string",
"dob": "string",
"email": "string"
}
Request Code Samples
curl --location --request PUT 'https://api.tahdah.me/api/candidates/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"forename": "string",
"surname": "string",
"dob": "string",
"email": "string"
}'
Responses
application/json Modified at 2025-05-22 23:06:12