Skip to main content
POST
/
job-interview-result-request-another-attempt
Request another interview attempt
curl --request POST \
  --url https://cool.jobmojito.com/functions/v1/job-interview-result-request-another-attempt \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "interview_result_id": "93c98d21-e04d-4a84-9afa-ed154cf73636"
}
'
{}

Authorizations

Authorization
string
header
required

Supabase JWT access token, passed as Authorization: Bearer <token>.

Body

application/json
interview_result_id
string<uuid>
required

The interview result to reopen for another attempt.

Minimum string length: 1
Example:

"93c98d21-e04d-4a84-9afa-ed154cf73636"

Response

The result was reset for another attempt.

Empty object on success.