ServiceTitan · Schema
ServiceTitan Payment
Payment record applied against one or more invoices.
Field Service ManagementTradesHVACPlumbingElectricalConstructionCRMDispatchAccountingPricebookMarketingMembershipsWebhooks
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| active | boolean | |
| referenceNumber | stringnull | |
| date | string | |
| type | string | |
| typeId | integernull | |
| total | number | |
| unappliedAmount | number | |
| memo | stringnull | |
| status | string | |
| customer | object | |
| batch | object | |
| splits | array | |
| modifiedOn | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/servicetitan/main/json-schema/servicetitan-payment-schema.json",
"title": "ServiceTitan Payment",
"description": "Payment record applied against one or more invoices.",
"type": "object",
"required": ["id", "date", "total"],
"properties": {
"id": { "type": "integer", "format": "int64" },
"active": { "type": "boolean" },
"referenceNumber": { "type": ["string", "null"] },
"date": { "type": "string", "format": "date-time" },
"type": { "type": "string" },
"typeId": { "type": ["integer", "null"] },
"total": { "type": "number" },
"unappliedAmount": { "type": "number" },
"memo": { "type": ["string", "null"] },
"status": { "type": "string", "enum": ["Pending", "Posted", "Exported"] },
"customer": {
"type": "object",
"properties": {
"id": { "type": "integer" },
"name": { "type": "string" }
}
},
"batch": {
"type": "object",
"properties": {
"id": { "type": ["integer", "null"] },
"name": { "type": ["string", "null"] },
"number": { "type": ["string", "null"] }
}
},
"splits": {
"type": "array",
"items": {
"type": "object",
"properties": {
"invoiceId": { "type": "integer" },
"amount": { "type": "number" }
}
}
},
"modifiedOn": { "type": "string", "format": "date-time" }
}
}