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 life-cycle

Payment StatusDescription
ProcessedPayment 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.
PendingProcessingPayment is waiting to be processed or is being processed.
MissingFundingPayment 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.
RejectedPayment has been rejected. See below for possible rejection reasons.
CancelledPayment has been cancelled by your company.
ReversedPayment has been rejected by the payment scheme.
ReturnedPayment 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 codeError description
InvalidDebtorAccountYou do not have permission to access selected debtor account or debtor account does not exist
CreatePaymentWithAdhocCreditorPermissionViolationYou do not have permission to instruct payment with ad hoc creditor from selected debtor account
BulkPaymentCreatePermissionViolationYou do not have permission to instruct payment from selected debtor account
CreateOwnPaymentPermissionViolationYou do not have permission to instruct own payment from selected debtor account
CreateOutgoingPaymentPermissionViolationYou do not have permission to instruct outgoing payment from selected debtor account
MandatoryMissingMandatory field cannot be empty
InvalidAmountLengthNumber of characters exceeds maximum allowed length
InvalidAmountFormatAmount not formatted correctly
InvalidAmountPrecisionForCurrencyNumber of amount decimals not supported by amount currency
MaxEurThresholdViolationAmount exceeds maximum allowed value
MinEurThresholdViolationAmount below minimum allowed value
InvalidAmountZeroAmount cannot be zero
UserAmountLimitViolationOutgoing transfer amount exceeds threshold limit
InvalidCurrencyUnsupported or invalid currency
InvalidDateFormatDate format not supported
RequestedExecutionDateDaysInPastThresholdViolationRequested Execution Date exceeds allowed number of days in the past
RequestedExecutionDateDaysInFutureThresholdViolationRequested Execution Date exceeds allowed number of days in the future
InvalidIbanChecksumIBAN checksum is invalid
InvalidAccountFormatUnsupported account format
InvalidDebtorVibanRelationVIBAN cannot be found
InvalidBankingCircleAccountNot an account with BC Connect
InvalidExternalAccountInvalid creditor account format, only IBAN allowed
InvalidTransferDebitAndCreditToSameAccountDebit and credit account cannot be the same
InvalidFinancialInstitutionInvalid BIC/clearing code format
ForbiddenTransferToCountryCreditor financial institution reside in country where BC Connect cannot transfer funds
InvalidAccountAndFinancialInstitutionCombinationCombination of IBAN and financial institution is invalid
InvalidLengthNumber of characters exceeds maximum allowed length
InvalidChargeBearerUnsupported charge bearer
InvalidDebtorVibanVIBAN cannot be found
InvalidCharactersCPF field validation failed
ProcessingErrorError processing the payment
DuplicateFileUploadIdentical file already uploaded once for this user.