jobs
Create Paid Payment
Use this endpoint to create a new payment paid.
This endpoint is rate limited. Use the RateLimit-* response headers to check current limits and remaining quota.
post/jobs/{jobId}/payments/paid
Path parameters
jobIdstring uuid required
The job's unique identifier
Request body
Example request
{
"to": "John Doe",
"paymentMethod": "Credit Card",
"amount": 5000,
"paymentDate": "2020-06-22T00:00:00Z",
"notes": "Note for the payment",
"accountTypeId": "67f032b0-4780-40c3-b907-76635115b735",
"refNumber": "AA11BB2233"
}Response
Created
Example response
{
"id": "68badf8c-ec30-4531-a357-ff57bf12717b",
"paymentType": "Received Payment",
"isParent": true,
"parentId": "fd33bba2-cb19-4baa-b87c-47ee9e55d95e",
"lastEditedDate": "2025-05-28T10:10:00Z",
"paymentMethod": "Check"
}