Bulk Update Application Status
curl --request POST \
--url https://api.example.com/external/v1/applications/advance/import requests
url = "https://api.example.com/external/v1/applications/advance/"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.example.com/external/v1/applications/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/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/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/advance/")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/external/v1/applications/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_bodyBulk Update Application Status
Update the status of multiple applications at once
POST
/
external
/
v1
/
applications
/
advance
/
Bulk Update Application Status
curl --request POST \
--url https://api.example.com/external/v1/applications/advance/import requests
url = "https://api.example.com/external/v1/applications/advance/"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.example.com/external/v1/applications/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/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/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/advance/")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/external/v1/applications/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_bodyBulk Update Application Status
Update the status of multiple applications in a single request.Endpoint
POST /external/v1/applications/advance/
Authentication
[!NOTE] Requires a valid company API key in theAuthorizationheader (format:Api-Key <key>).
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
application_ids | array of strings | Yes | A list of application IDs to update |
page_or_stage_id | string (UUID) | Yes | The new page/status to move the applications to |
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/advance/" \
-H "Authorization: Api-Key YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"application_ids": [
"uuid-1",
"uuid-2",
"uuid-3"
],
"page_or_stage_id": "stage-uuid",
"stage_reason_id": "reason-uuid"
}'
Responses
200: OK
The bulk status update was successfully initiated.400: Bad Request
Invalid request or failed operation.500: Internal Server Error
Internal server error occurred while initiating the bulk update.⌘I