Draws

Construction draws against a job.

The object#

FieldTypeDescription
idread-onlyintegerNolaPro id.
namestring(255)Name of the construction loan draw.
statusintegerDraw status code.
drawtotalmoneystring(6dp)Stored as decimal(19,6).
drawdatestringDate of the draw.
retainagemoneystring(2dp)Stored as decimal(6,2).
retainagetotalmoneystring(6dp)Stored as decimal(19,6).
customeridintegerReference to customers, by id. Write either this or customer.
customerstring(30)Code for the referenced customer, instead of the id.
invoiceidintegerInvoiceid. Id only.
invoicestring(30)The invoicenumber of the referenced invoices, instead of the id. Send this or invoiceid, not both unless they agree.
entrydatestringWhen the record was created.
cancelbooleanCancelled. Always a boolean on the wire, whatever integer width the column uses (D23).
jobsondrawtextJobsondraw. Stored as text, no practical length limit.
changeorderaddmoneystring(6dp)Stored as decimal(19,6).
changeorderdedmoneystring(6dp)Stored as decimal(19,6).
externalidstring(100)Your own key. Scoped to your company.

Endpoints#

POST/draws/batch 207

Create many.

Requires scope jobs:write.

Parameters
NameInTypeNotes
Body array
FieldTypeDescription
idread-onlyintegerNolaPro id.
namestring(255)Name of the construction loan draw.
statusintegerDraw status code.
drawtotalmoneystring(6dp)Stored as decimal(19,6).
drawdatestringDate of the draw.
retainagemoneystring(2dp)Stored as decimal(6,2).
retainagetotalmoneystring(6dp)Stored as decimal(19,6).
customeridintegerReference to customers, by id. Write either this or customer.
customerstring(30)Code for the referenced customer, instead of the id.
invoiceidintegerInvoiceid. Id only.
invoicestring(30)The invoicenumber of the referenced invoices, instead of the id. Send this or invoiceid, not both unless they agree.
entrydatestringWhen the record was created.
cancelbooleanCancelled. Always a boolean on the wire, whatever integer width the column uses (D23).
jobsondrawtextJobsondraw. Stored as text, no practical length limit.
changeorderaddmoneystring(6dp)Stored as decimal(19,6).
changeorderdedmoneystring(6dp)Stored as decimal(19,6).
externalidstring(100)Your own key. Scoped to your company.
curl -X POST \
  'https://acme.nolapro.com/!/api/v2/draws/batch' \
  -H 'Authorization: Bearer $NP_TOKEN' \
  -H 'Content-Type: application/json' \
  -H 'Idempotency-Key: your-unique-key' \
  -d '[
    {
        "name": "Example name",
        "status": 1,
        "drawtotal": "125.0000",
        "drawdate": "2026-08-01",
        "retainage": "125.0000",
        "retainagetotal": "125.0000"
    }
]'
GET/draws 200403

List draws.

Requires scope jobs:read.

Parameters
NameInTypeNotes
statusquerystringRestrict to one status.
customeridquerystringRestrict to one customerid.
invoiceidquerystringRestrict to one invoiceid.
namequerystringname. Partial match, case-insensitive.
cancelquerystringDefaults to false. Pass true or any.
externalidquerystringExact match on your own key.
includequerystringComma-separated extras to embed. Only custom_fields is available: the extra fields this install has defined on the record. Off by default, and an unrecognised value is refused rather than ignored. See Conventions.
When it fails
StatusCodeMeaning
403insufficient_scopeToken lacks read scope.
curl \
  'https://acme.nolapro.com/!/api/v2/draws' \
  -H 'Authorization: Bearer $NP_TOKEN'
POST/draws 201400

Create.

Requires scope jobs:write.

Parameters
NameInTypeNotes
Body
FieldTypeDescription
idread-onlyintegerNolaPro id.
namestring(255)Name of the construction loan draw.
statusintegerDraw status code.
drawtotalmoneystring(6dp)Stored as decimal(19,6).
drawdatestringDate of the draw.
retainagemoneystring(2dp)Stored as decimal(6,2).
retainagetotalmoneystring(6dp)Stored as decimal(19,6).
customeridintegerReference to customers, by id. Write either this or customer.
customerstring(30)Code for the referenced customer, instead of the id.
invoiceidintegerInvoiceid. Id only.
invoicestring(30)The invoicenumber of the referenced invoices, instead of the id. Send this or invoiceid, not both unless they agree.
entrydatestringWhen the record was created.
cancelbooleanCancelled. Always a boolean on the wire, whatever integer width the column uses (D23).
jobsondrawtextJobsondraw. Stored as text, no practical length limit.
changeorderaddmoneystring(6dp)Stored as decimal(19,6).
changeorderdedmoneystring(6dp)Stored as decimal(19,6).
externalidstring(100)Your own key. Scoped to your company.
When it fails
StatusCodeMeaning
400invalid_requestA required field was missing.
curl -X POST \
  'https://acme.nolapro.com/!/api/v2/draws' \
  -H 'Authorization: Bearer $NP_TOKEN' \
  -H 'Content-Type: application/json' \
  -H 'Idempotency-Key: your-unique-key' \
  -d '{
    "name": "Example name",
    "status": 1,
    "drawtotal": "125.0000",
    "drawdate": "2026-08-01",
    "retainage": "125.0000",
    "retainagetotal": "125.0000"
}'
Response 201
{
    "name": "Example name",
    "status": 1,
    "drawtotal": "125.0000",
    "drawdate": "2026-08-01",
    "retainage": "125.0000",
    "retainagetotal": "125.0000"
}
GET/draws/{id} 200404

Retrieve one record.

Requires scope jobs:read.

Parameters
NameInTypeNotes
idrequiredpathintegerThe record id.
includequerystringComma-separated extras to embed. Only custom_fields is available: the extra fields this install has defined on the record. Off by default, and an unrecognised value is refused rather than ignored. See Conventions.
When it fails
StatusCodeMeaning
404not_foundNo record with that id.
curl \
  'https://acme.nolapro.com/!/api/v2/draws/104' \
  -H 'Authorization: Bearer $NP_TOKEN'
Response 200
{
    "name": "Example name",
    "status": 1,
    "drawtotal": "125.0000",
    "drawdate": "2026-08-01",
    "retainage": "125.0000",
    "retainagetotal": "125.0000"
}
PATCH/draws/{id} 200404

Update.

Requires scope jobs:write.

Parameters
NameInTypeNotes
idrequiredpathintegerThe record id.
Body
FieldTypeDescription
idread-onlyintegerNolaPro id.
namestring(255)Name of the construction loan draw.
statusintegerDraw status code.
drawtotalmoneystring(6dp)Stored as decimal(19,6).
drawdatestringDate of the draw.
retainagemoneystring(2dp)Stored as decimal(6,2).
retainagetotalmoneystring(6dp)Stored as decimal(19,6).
customeridintegerReference to customers, by id. Write either this or customer.
customerstring(30)Code for the referenced customer, instead of the id.
invoiceidintegerInvoiceid. Id only.
invoicestring(30)The invoicenumber of the referenced invoices, instead of the id. Send this or invoiceid, not both unless they agree.
entrydatestringWhen the record was created.
cancelbooleanCancelled. Always a boolean on the wire, whatever integer width the column uses (D23).
jobsondrawtextJobsondraw. Stored as text, no practical length limit.
changeorderaddmoneystring(6dp)Stored as decimal(19,6).
changeorderdedmoneystring(6dp)Stored as decimal(19,6).
externalidstring(100)Your own key. Scoped to your company.
When it fails
StatusCodeMeaning
404not_foundNo record with that id.
curl -X PATCH \
  'https://acme.nolapro.com/!/api/v2/draws/104' \
  -H 'Authorization: Bearer $NP_TOKEN' \
  -H 'Content-Type: application/json' \
  -H 'Idempotency-Key: your-unique-key' \
  -d '{
    "name": "Example name",
    "status": 1,
    "drawtotal": "125.0000",
    "drawdate": "2026-08-01",
    "retainage": "125.0000",
    "retainagetotal": "125.0000"
}'
Response 200
{
    "name": "Example name",
    "status": 1,
    "drawtotal": "125.0000",
    "drawdate": "2026-08-01",
    "retainage": "125.0000",
    "retainagetotal": "125.0000"
}
DELETE/draws/{id} 200404

Cancel.

Requires scope jobs:cancel.

Parameters
NameInTypeNotes
idrequiredpathintegerThe record id.
When it fails
StatusCodeMeaning
404not_foundNo record with that id.
curl -X DELETE \
  'https://acme.nolapro.com/!/api/v2/draws/104' \
  -H 'Authorization: Bearer $NP_TOKEN'
Response 200
{
    "name": "Example name",
    "status": 1,
    "drawtotal": "125.0000",
    "drawdate": "2026-08-01",
    "retainage": "125.0000",
    "retainagetotal": "125.0000"
}