List or retrieve jobs
curl --request GET \
--url https://my.propops.app/api/jobs/manage \
--header 'Authorization: Bearer <token>'import requests
url = "https://my.propops.app/api/jobs/manage"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://my.propops.app/api/jobs/manage', 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://my.propops.app/api/jobs/manage",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://my.propops.app/api/jobs/manage"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://my.propops.app/api/jobs/manage")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://my.propops.app/api/jobs/manage")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"message": "Operation completed successfully",
"data": {
"ID": 1001,
"uuid": "550e8400-e29b-41d4-a716-446655440001",
"job_ref": "JOB-001",
"job_title": "Boiler Service - Unit 001",
"job_description": "Annual boiler service required for property unit 001.",
"status_id": 1,
"status_name": "Open",
"priority_id": 2,
"priority_name": "Medium",
"job_type_id": 3,
"job_type_name": "Gas & Heating",
"agent_id": 10,
"agent_name": "Agent_001",
"contractor_id": 20,
"contractor_name": "Contractor_001",
"address_id": 5,
"full_address": "1 Example Street, Sample Town, EX1 1AA",
"job_total_budget": 250,
"contractor_budget": 180,
"vat_percentage": 20,
"total_amount": 216,
"date_works_start_date": "2024-06-01",
"date_works_end_date": "2024-06-02",
"invoice_no": "INV-001",
"quote_no": "QT-001",
"works_order_ref": "WO-001",
"access_details": "Key safe code 1234.",
"is_pinned": false,
"photos_count": 3,
"documents_count": 1,
"created_at": "2024-01-15T09:30:00Z",
"updated_at": "2024-06-01T14:00:00Z"
},
"count": 42
}{
"success": false,
"error": "Unauthorized. Valid Bearer token required."
}{
"success": false,
"error": "You do not have permission to perform this action."
}{
"success": false,
"error": "Resource not found."
}Job Management
List or retrieve jobs
Retrieve a paginated list of jobs or fetch a single job by UUID.
Use action=list for paginated results or action=get with a uuid parameter
for a specific job.
Required permission: api.jobs.manage.list (list) or api.jobs.manage.get (get)
GET
/
api
/
jobs
/
manage
List or retrieve jobs
curl --request GET \
--url https://my.propops.app/api/jobs/manage \
--header 'Authorization: Bearer <token>'import requests
url = "https://my.propops.app/api/jobs/manage"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://my.propops.app/api/jobs/manage', 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://my.propops.app/api/jobs/manage",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://my.propops.app/api/jobs/manage"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://my.propops.app/api/jobs/manage")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://my.propops.app/api/jobs/manage")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"message": "Operation completed successfully",
"data": {
"ID": 1001,
"uuid": "550e8400-e29b-41d4-a716-446655440001",
"job_ref": "JOB-001",
"job_title": "Boiler Service - Unit 001",
"job_description": "Annual boiler service required for property unit 001.",
"status_id": 1,
"status_name": "Open",
"priority_id": 2,
"priority_name": "Medium",
"job_type_id": 3,
"job_type_name": "Gas & Heating",
"agent_id": 10,
"agent_name": "Agent_001",
"contractor_id": 20,
"contractor_name": "Contractor_001",
"address_id": 5,
"full_address": "1 Example Street, Sample Town, EX1 1AA",
"job_total_budget": 250,
"contractor_budget": 180,
"vat_percentage": 20,
"total_amount": 216,
"date_works_start_date": "2024-06-01",
"date_works_end_date": "2024-06-02",
"invoice_no": "INV-001",
"quote_no": "QT-001",
"works_order_ref": "WO-001",
"access_details": "Key safe code 1234.",
"is_pinned": false,
"photos_count": 3,
"documents_count": 1,
"created_at": "2024-01-15T09:30:00Z",
"updated_at": "2024-06-01T14:00:00Z"
},
"count": 42
}{
"success": false,
"error": "Unauthorized. Valid Bearer token required."
}{
"success": false,
"error": "You do not have permission to perform this action."
}{
"success": false,
"error": "Resource not found."
}Authorizations
All API requests must include a valid Bearer token in the Authorization header.
Tokens are 64-character SHA-256 session hashes issued by the PropOps authentication system.
Example:
Authorization: Bearer a1b2c3d4e5f6...
Query Parameters
Available options:
list, get, get_file_types, get_creators, get_job_agents, get_job_contractors, get_job_clients, list_commits, get_assignment_notification_state, preview_delete Job UUID (required for action=get)
Example:
"550e8400-e29b-41d4-a716-446655440001"
Example:
"boiler service"
Example:
1
Example:
2
Example:
10
Example:
20
Maximum number of records to return (default 50, max 200).
Required range:
1 <= x <= 200Number of records to skip for pagination.
Required range:
x >= 0⌘I