Update Application Status
curl --request POST \
--url https://api.example.com/external/v1/applications/{application_id}/advance/import requests
url = "https://api.example.com/external/v1/applications/{application_id}/advance/"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.example.com/external/v1/applications/{application_id}/advance/', 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://api.example.com/external/v1/applications/{application_id}/advance/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/external/v1/applications/{application_id}/advance/"
req, _ := http.NewRequest("POST", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/external/v1/applications/{application_id}/advance/")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/external/v1/applications/{application_id}/advance/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
response = http.request(request)
puts response.read_bodyUpdate Application Status
Advance or change the status of an application
POST
/
external
/
v1
/
applications
/
{application_id}
/
advance
/
Update Application Status
curl --request POST \
--url https://api.example.com/external/v1/applications/{application_id}/advance/import requests
url = "https://api.example.com/external/v1/applications/{application_id}/advance/"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.example.com/external/v1/applications/{application_id}/advance/', 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://api.example.com/external/v1/applications/{application_id}/advance/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/external/v1/applications/{application_id}/advance/"
req, _ := http.NewRequest("POST", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/external/v1/applications/{application_id}/advance/")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/external/v1/applications/{application_id}/advance/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
response = http.request(request)
puts response.read_bodyUpdate Application Status
Change an application’s status or advance it to a different stage in the hiring flow.Endpoint
POST /external/v1/applications/{application_id}/advance/
Authentication
[!NOTE] Requires a valid company API key in theAuthorizationheader (format:Api-Key <key>).
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
application_id | string (UUID) | Yes | The application ID |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
page_or_stage_id | string (UUID) | Yes | The new page/status where the application should be moved |
stage_reason_id | string (UUID) | No | Reason ID for the stage update (if applicable) |
Example Request
curl -X POST "https://api.firstwork.com/external/v1/applications/7c9e6679-7425-40de-944b-e07fc1f90ae7/advance/" \
-H "Authorization: Api-Key YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"page_or_stage_id": "next-stage-uuid",
"stage_reason_id": "reason-uuid"
}'
Responses
200: OK
The status update was successfully initiated.400: Bad Request
Invalid request, missing required fields, or invalid application ID.500: Internal Server Error
Internal server error occurred while initiating the status update.Notes
- Stage transitions trigger any configured automations
- Transition history is automatically recorded
- For updating multiple applications at once, see Bulk Update Status