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"
}
'
import requests

url = "https://cool.jobmojito.com/functions/v1/job-interview-result-request-another-attempt"

payload = { "interview_result_id": "93c98d21-e04d-4a84-9afa-ed154cf73636" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({interview_result_id: '93c98d21-e04d-4a84-9afa-ed154cf73636'})
};

fetch('https://cool.jobmojito.com/functions/v1/job-interview-result-request-another-attempt', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://cool.jobmojito.com/functions/v1/job-interview-result-request-another-attempt",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'interview_result_id' => '93c98d21-e04d-4a84-9afa-ed154cf73636'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"strings"
"net/http"
"io"
)

func main() {

url := "https://cool.jobmojito.com/functions/v1/job-interview-result-request-another-attempt"

payload := strings.NewReader("{\n \"interview_result_id\": \"93c98d21-e04d-4a84-9afa-ed154cf73636\"\n}")

req, _ := http.NewRequest("POST", url, payload)

req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://cool.jobmojito.com/functions/v1/job-interview-result-request-another-attempt")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"interview_result_id\": \"93c98d21-e04d-4a84-9afa-ed154cf73636\"\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://cool.jobmojito.com/functions/v1/job-interview-result-request-another-attempt")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"interview_result_id\": \"93c98d21-e04d-4a84-9afa-ed154cf73636\"\n}"

response = http.request(request)
puts response.read_body
{}
{
"error": "Field is required.",
"name": "interview_result_id"
}
{
"error": "Field is required.",
"name": "interview_result_id"
}
{
"error": "Field is required.",
"name": "interview_result_id"
}

Authorizations

Authorization
string
header
required

Supabase JWT — 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.