Invoice Updates
Invoice Updates
{
"event": {
"id": "{{event.id}}",
"type": "{{event.type}}",
"timeStamp": "{{event.timeStamp}}",
"key": "{{event.key}}"
},
"invoice": {
"id": "{{invoice.id}}",
"location": {
"id": "{{invoice.location.id}}",
"title": "{{invoice.location.title}}"
},
"client": {
"id": "{{invoice.client.id}}",
"fullName": "{{invoice.client.fullName}}",
"countryCode": "{{invoice.client.countryCode}}",
"phone": "{{invoice.client.phone}}",
"email": "{{invoice.client.email}}"
},
"staff": {
"id": "{{invoice.staff.id}}",
"name": "{{invoice.staff.name}}"
},
"dueDate": "{{invoice.dueDate}}",
"date": "{{invoice.date}}",
"status": "{{invoice.status}}",
"invoiceNumber": "{{invoice.invoiceNumber}}",
"internalNotes": "{{invoice.internalNotes}}",
"clientNotes": "{{invoice.clientNotes}}",
"currency": "{{invoice.currency}}",
"total": "{{invoice.total}}",
"pendingAmount": "{{invoice.pendingAmount}}",
"items": "{{invoice.items}}",
"invoicePDF": "{{invoice.invoicePDF}}",
"createdAt": "{{invoice.createdAt}}",
"updatedAt": "{{invoice.updatedAt}}"
}
}Last updated