The people the board can drop work on.
curl --request GET \
--url https://app.assetinfinity.ai/api/rpc/dispatch_techniciansimport requests
url = "https://app.assetinfinity.ai/api/rpc/dispatch_technicians"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://app.assetinfinity.ai/api/rpc/dispatch_technicians', 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://app.assetinfinity.ai/api/rpc/dispatch_technicians",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://app.assetinfinity.ai/api/rpc/dispatch_technicians"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.assetinfinity.ai/api/rpc/dispatch_technicians")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.assetinfinity.ai/api/rpc/dispatch_technicians")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyDispatch
The people the board can drop work on.
Where they are, what they are on, what is next, their availability, their skills, and their distance from the job being moved.
GET
/
rpc
/
dispatch_technicians
The people the board can drop work on.
curl --request GET \
--url https://app.assetinfinity.ai/api/rpc/dispatch_techniciansimport requests
url = "https://app.assetinfinity.ai/api/rpc/dispatch_technicians"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://app.assetinfinity.ai/api/rpc/dispatch_technicians', 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://app.assetinfinity.ai/api/rpc/dispatch_technicians",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://app.assetinfinity.ai/api/rpc/dispatch_technicians"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.assetinfinity.ai/api/rpc/dispatch_technicians")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.assetinfinity.ai/api/rpc/dispatch_technicians")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyWas this page helpful?
⌘I

