For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Dashboard
How It WorksKnowledge BaseOnboardingVideo TutorialsPMS GuidanceAPI ReferenceRelease Notes
    • Overview
    • PMS Generic APIs
        • GETGet all construction jobs
        • POSTCreate construction job
        • GETGet construction job by ID
        • PUTUpdate construction job
        • POSTCreate contract
        • PUTUpdate contract
        • GETGet all construction job details for a specific construction job
        • GETGet all contracts for a specific construction job
        • GETGet all contract details for a specific contract
    • CRM Generic APIs
    • PMS APIs
    • CRM APIs
    • Download OpenAPI Spec
Dashboard
LogoLogo
PMS Generic APIsConstruction Job Cost

Get all contracts for a specific construction job

GET
/v1/construction-jobs/:construction_job_id/contracts
GET
/v1/construction-jobs/:construction_job_id/contracts
$curl https://api.propexo.com/v1/construction-jobs/construction_job_id/contracts \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json"
1{
2 "meta": {
3 "orderBy": [
4 {}
5 ],
6 "offset": 0,
7 "limit": 100,
8 "hasMore": true,
9 "total": 1000
10 },
11 "results": [
12 {
13 "id": "c3f9a1d2-4b7e-4f3a-9a2e-1d2b3c4e5f67",
14 "created_at": "2024-05-10T09:15:00Z",
15 "updated_at": "2024-06-01T14:45:00Z",
16 "last_seen": "2024-06-01T14:40:00Z",
17 "x_id": "EXT-CON-987654",
18 "x_property_id": "EXT-PROP-123456",
19 "x_location_id": null,
20 "x_construction_job_id": "EXT-CJOB-789012",
21 "x_vendor_id": "EXT-VEND-345678",
22 "custom_data": {},
23 "end_date": "2024-12-31",
24 "expense_type": "Construction Materials",
25 "invoiced_total_in_cents": 15000000,
26 "notes": "Contract includes supply of all concrete materials.",
27 "original_amount_in_cents": 14500000,
28 "retention_percent": "5%",
29 "start_date": "2024-01-15",
30 "status_normalized": "active",
31 "status_raw": "Active",
32 "total_amount_in_cents": 15000000,
33 "construction_job_id": "cjob-1234abcd5678efgh",
34 "vendor_id": "vend-9876wxyz5432lmno",
35 "property_id": "prop-1122aabb3344ccdd",
36 "integration_id": "int-5566eeff7788gghh",
37 "integration_vendor": "APPFOLIO"
38 }
39 ]
40}
Get all contracts for a specific construction job
Was this page helpful?
Previous

Get all contract details for a specific contract

Next
Built with

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Path parameters

construction_job_idstringRequired
The Propexo unique identifier for the construction job

Query parameters

order-bystringOptionalDefaults to created_at:desc

Order the results by a field. Optionally include asc or desc preceded by a colon (default is asc). Example: ?order-by=updated_at:desc

updated_at_gtestring or nullOptional

Filter to records updated at or after this datetime. Format: ISO 8601 (e.g. 2026-01-01T00:00:00Z)

updated_at_ltestring or nullOptional

Filter to records updated at or before this datetime. Format: ISO 8601 (e.g. 2026-12-31T23:59:59Z)

offsetinteger or nullOptional>=0Defaults to 0
Can be used for paginating results
limitinteger or nullOptional0-250Defaults to 100
A number between 1 and 250 to determine the number of results to return in a single query
property_idstringOptional
The Propexo unique identifier for the property
integration_idstringOptional
The Propexo unique identifier for the integration
integration_vendorenumOptional
The property management system of record

Response

Successful response
metaobject
resultslist of objects

Errors

400
Bad Request Error