BACS allocation
Successful allocation - amount allocated to a single invoice
{
"eventId": "string",
"eventType": "SERVICE_COMMERCIAL_BACS_ALLOCATION",
"tenantId": "string",
"eventDate": "YYYY-MM-DD HH:MM:SS",
"data": {
"accountIdentifier": "string",
"company": {
"companyIdentifier": "string",
"companyName": "string",
"companyType": "string"
},
"invoices": [
{
"invoiceIdentifier": "string",
"allocatedAmount": {
"amount": 200.50,
"currencyCode": "GBP"
},
"status": "SETTLED"
}
],
"payment": {
"amount": 500,
"currencyCode": "string",
"paymentDate": "YYYY-MM-DD HH:MM:SS",
"accountServicerReference": "string",
"name": "string",
"address": "string",
"additionalEntryInformation": "string"
},
"allocation": {
"status": "string",
"paymentIdentifier": "string",
"amount": 200.50,
"currencyCode": "string",
"allocationDate": "YYYY-MM-DD HH:MM:SS",
"paymentAmount": 500
}
},
"sourceId": "string",
"sourceName": "string",
"sourceType": "string",
"entityId": "string",
"entityType": "string",
"entityOperation": "O",
"auditMessage": "BACS payment allocation result"
}
Successful allocation - amount allocated to more than one invoice
{
"eventId": "string",
"eventType": "SERVICE_COMMERCIAL_BACS_ALLOCATION",
"tenantId": "string",
"eventDate": "YYYY-MM-DD HH:MM:SS",
"data": {
"accountIdentifier": "string",
"company": {
"companyIdentifier": "string",
"companyName": "string",
"companyType": "string"
},
"invoices": [
{
"invoiceIdentifier": "string",
"allocatedAmount": {
"amount": 200.50,
"currencyCode": "GBP"
},
"status": "SETTLED"
},
{
"invoiceIdentifier": "string",
"allocatedAmount": {
"amount": 200.50,
"currencyCode": "GBP"
},
"status": "SETTLED"
}
],
"payment": {
"amount": 500,
"currencyCode": "string",
"paymentDate": "YYYY-MM-DD HH:MM:SS",
"accountServicerReference": "string",
"name": "string",
"address": "string",
"additionalEntryInformation": "string"
},
"allocation": {
"status": "string",
"paymentIdentifier": "string",
"amount": 401.00,
"currencyCode": "string",
"allocationDate": "YYYY-MM-DD HH:MM:SS",
"paymentAmount": 500
}
},
"sourceId": "string",
"sourceName": "string",
"sourceType": "string",
"entityId": "string",
"entityType": "string",
"entityOperation": "O",
"auditMessage": "BACS payment allocation result"
}
Successful allocation - amount allocated to account, no outstanding invoices
{
"eventId": "string",
"eventType": "SERVICE_COMMERCIAL_BACS_ALLOCATION",
"tenantId": "string",
"eventDate": "YYYY-MM-DD HH:MM:SS",
"data": {
"accountIdentifier": "string",
"company": {
"companyIdentifier": "string",
"companyName": "string",
"companyType": "string"
},
"payment": {
"amount": 500,
"currencyCode": "string",
"paymentDate": "YYYY-MM-DD HH:MM:SS",
"accountServicerReference": "string",
"name": "string",
"address": "string",
"additionalEntryInformation": "string"
},
"allocation": {
"status": "string",
"paymentIdentifier": "string",
"amount": 0,
"currencyCode": "string",
"allocationDate": "YYYY-MM-DD HH:MM:SS",
"paymentAmount": 500
}
},
"sourceId": "string",
"sourceName": "string",
"sourceType": "string",
"entityId": "string",
"entityType": "string",
"entityOperation": "O",
"auditMessage": "BACS payment allocation result"
}
Unsuccessful allocation
{
"eventId": "GUID",
"eventType": "SERVICE_COMMERCIAL_BACS_ALLOCATION",
"tenantId": "GUID",
"eventDate": "YYYY-MM-DD 00:00:00",
"data": {
"payment": {
"amount": 0,
"currencyCode": "string",
"paymentDate": "YYYY-MM-DD 00:00:00",
"accountServicerReference": "string",
"name": "string",
"address": "string",
"additionalEntryInformation": "string"
},
"allocation": {
"status": "UNALLOCATED",
"amount": 0,
"reason": "string"
}
},
"sourceId": "GUID",
"sourceName": "PW_SYSTEM",
"sourceType": "USER",
"entityId": "GUID",
"entityType": "UNKNOWN",
"entityOperation": "O",
"auditMessage": "BACS payment allocation result"
}
Updated 1 day ago