Payment lifecycle
Learn about the different payment statuses
Once a payment is successfully initiated, you will receive a response containing the payment ID and its current status. The initial status will usually be PendingProcessing
, indicating that the payment has been received by BC Connect and is awaiting processing. To check the status of a payment, you have the option to either call our payment status endpoints or subscribe to Webhooks.
Payment statuses
Payment life-cycle
Payment Status | Description |
---|---|
Processed | Payment has been successfully processed. This is the final state for a payment and signifies that it has passed all validation checks and AML checks, and has been sent to the recipient. |
PendingProcessing | Payment is waiting to be processed or is being processed. |
MissingFunding | Payment has not been processed due to insufficient funds in the debtor account. It will be automatically processed once the account is funded within 2 days. If the account remains unfunded for 2 days, the payment will be rejected. |
Rejected | Payment has been rejected. See below for possible rejection reasons. |
Cancelled | Payment has been cancelled by your company. |
Reversed | Payment has been rejected by the payment scheme. |
Returned | Payment has been returned by the recipient's financial institution. "Returned" is not an actual state in our system. The initial payment will be labeled as Processed. The returned payment will appear as an incoming payment with the status Processed. It can be tricky to identify Returned payments but the Remittance info of the returned payment indicates that it is a return. |
Look up payment status
You can check the status of payments individually regardless of whether they were submitted using the Single or Bulk endpoints. Additionally, you can obtain the overall status of a bulk payment file submission.
Individual payment status
To retrieve the status of a single payment, use the endpoint api/v1/payments/singles/{payment-id}/status
, where {payment-id} refers to the ID of the payment received during initiation. Here is a link to the relevant API Reference Get status of a payment.
Example request:
GET/api/v1/payments/singles/9ffa7024-5536-4b0f-9578-d03171f75182/status
The response will provide the status of the payment without any additional parameters:
{
"status": "Processed"
}
Bulk payment status
To get the overall status of a bulk payment, use the endpoint api/v1/payments/bulks/{payment-bulk-id}/status
with the ID of the payment received as response to the payment initiation. Here is a link to the relevant API Reference Get status of single bulk payment.
Example request:
GET/api/v1/payments/bulks/be0c7c7d-8dba-471c-822a-8e5ba340e97e/status
The response contains the status of the payment bulk and no other parameters:
{
"status": "Processed"
}
The returned status represents the aggregated status of all payments within the bulk. If at least 51% of the payments have been processed, the overall status will be "Processed."
For a more detailed overview of the bulk status, you can use the api/v1/payments/bulks/{payment-bulk-id}
endpoint. This will provide general information about the bulk and an overview of the payment statuses within it.
{
"paymentBulkId": "f3822099-8316-4487-bceb-32c5e89352de",
"concurrencyToken": "1638789624",
"status": "Approved",
"instructedDate": "2021-12-06T00:00:00+00:00",
"paymentStatistics": {
"processed": 232,
"pendingProcessing": 0,
"rejected": 0,
"missingFunding": 0,
"cancelled": 0,
"pendingApproval": 0,
"pendingSca": 0,
"scaDeclined": 0,
"scaExpired": 0,
"declinedByApprover": 0,
"total": 232,
"aggregatedAmount": 274933
}
}
Check status of the individual payments submitted in bulk
You can use the GET/api/v1/payments/singles and filter on PaymentBulkId
Rejection reasons
A payment may be rejected if it has been in the "MissingFunding" state for two days or if any of the fields contain invalid values. Rejection can occur either upfront or after the payment has been processed in our core system. To determine the rejection reason, use either the GET/api/v1/payments/singles
or GET/api/v1/payments/singles/{payment-id}
endpoint to retrieve the payment details and read the rejection reason.
Here is a snippet of data returned by these endpoints, where the rejection reason can be found in the "errors" field:
{
"paymentId": "690a72db-aa73-4d48-974b-7b26abdcd164",
"transactionReference": "TRANS221122323",
"concurrencyToken": "1638789624",
"classification": "Outgoing",
"status": "Rejected",
"errors": "InvalidAccountFormat",
"
If you easily want to look up rejected payments and the reasons for a bulk file, use the GET/api/v1/payments/singles
and filter on PaymentBulkId
and Status
.
Below is a list of the possible rejection reasons, and an explanation for each. The list contains both upfront validation errors and processing errors.
Error code | Error description |
---|---|
InvalidDebtorAccount | You do not have permission to access selected debtor account or debtor account does not exist |
CreatePaymentWithAdhocCreditorPermissionViolation | You do not have permission to instruct payment with ad hoc creditor from selected debtor account |
BulkPaymentCreatePermissionViolation | You do not have permission to instruct payment from selected debtor account |
CreateOwnPaymentPermissionViolation | You do not have permission to instruct own payment from selected debtor account |
CreateOutgoingPaymentPermissionViolation | You do not have permission to instruct outgoing payment from selected debtor account |
MandatoryMissing | Mandatory field cannot be empty |
InvalidAmountLength | Number of characters exceeds maximum allowed length |
InvalidAmountFormat | Amount not formatted correctly |
InvalidAmountPrecisionForCurrency | Number of amount decimals not supported by amount currency |
MaxEurThresholdViolation | Amount exceeds maximum allowed value |
MinEurThresholdViolation | Amount below minimum allowed value |
InvalidAmountZero | Amount cannot be zero |
UserAmountLimitViolation | Outgoing transfer amount exceeds threshold limit |
InvalidCurrency | Unsupported or invalid currency |
InvalidDateFormat | Date format not supported |
RequestedExecutionDateDaysInPastThresholdViolation | Requested Execution Date exceeds allowed number of days in the past |
RequestedExecutionDateDaysInFutureThresholdViolation | Requested Execution Date exceeds allowed number of days in the future |
InvalidIbanChecksum | IBAN checksum is invalid |
InvalidAccountFormat | Unsupported account format |
InvalidDebtorVibanRelation | VIBAN cannot be found |
InvalidBankingCircleAccount | Not an account with BC Connect |
InvalidExternalAccount | Invalid creditor account format, only IBAN allowed |
InvalidTransferDebitAndCreditToSameAccount | Debit and credit account cannot be the same |
InvalidFinancialInstitution | Invalid BIC/clearing code format |
ForbiddenTransferToCountry | Creditor financial institution reside in country where BC Connect cannot transfer funds |
InvalidAccountAndFinancialInstitutionCombination | Combination of IBAN and financial institution is invalid |
InvalidLength | Number of characters exceeds maximum allowed length |
InvalidChargeBearer | Unsupported charge bearer |
InvalidDebtorViban | VIBAN cannot be found |
InvalidCharacters | CPF field validation failed |
ProcessingError | Error processing the payment |
DuplicateFileUpload | Identical file already uploaded once for this user. |
Updated 6 months ago