v1
latestOpenAPI 3.1.02026-07-24730265.7 KBGet Job's Payment Details
This endpoint allows you to get all the payment details, including the payment ID for a specific job.
get/api/v1/payments?good_type={good_type}&good_id={job_id}
Path parameters
good_typestring required
Required. The good type, in this case "Job".
good_idstring required
Required. The job ID of the job you are trying to get payments for.
Response
200
Example response
{
"pagination": {
"current_page": 1,
"total_pages": 1,
"total": 3
},
"results": [
{
"id": 13406102,
"org_id": 463605,
"good_id": 18703054,
"good_data": "3",
"state": "complete",
"created_at": "2025-10-22T18:43:34.903Z",
"updated_at": "2025-10-22T18:43:34.903Z",
"good_type": "Job",
"good": {
"id": 18703054,
"deliverable_id": 3,
"name": "Multi-structure Home",
"location_line_1": "123 Hover Street",
"location_city": "Longmont",
"location_region": "CO"
}
}
]
}