# Cashing

Cashing checks implies a digital and a physical process.

  1. Payin creation – You create a Payin object, containing information about the Check
  2. Check mail in – You send the physical Check to Treezor via mail (within 14 days)

The funds are credited to the wallet when the physical check is received and approved.

When a check is physically processed, payin.update webhooks are sent informing you of the changes.

Info icon

Information – Checks must:

  • Be sent via mail, as no physical agencies are available
  • Be received within 14 calendar days of the Payin creation (otherwise, the Payin status is set to 151134)
  • Bear the following information: Name, Account Number, Date, Signature

# Creation

# Mandatory parameters

Attribute Type Description
paymentMethodId integer Must be 26 for checks.
amount float The amount of the check.
walletId string The unique identifier of the Wallet to credit (recipient).
currency string The currency of the check.
additionalData object Contains the cmc7 line, the drawer data and the RLMC key of the check.

# Request example

Use the following request to create a Payin object for your check:

Here is an example of {payload}:

Returns the Payin object if successful.

# Mail in

Once the Payin is created, the Check can mailed to the address indicated below. Checks must be received within 14 days after the Payin Creation.

CENTRE DE TRAITEMENT
TSA 80007
33625 BORDEAUX CEDEX 9

# Lifecycle

Checks cash-in may have different outcomes, whether they are accepted or not. If the check bounces within the 11-day delay, the Payin is canceled. Otherwise, a Payin refund is created.

Here is an illustration of the check lifecyle:

Check lifecycle

# Examples

Find below Check lifecyle examples.

# Accepted check

Step Status Code Description
#1 pending PENDING 151124 Waiting for check mail-in
#2 pending PENDING 151132 Check has been received
#3 pending PENDING 151129 Check has been submitted to the bank
#4 pending PENDING 151130 Check is awaiting validation
#5 yes checkmark VALIDATED 140005 Payment validated

# Error during handling

Step Status Code Description
#1 pending PENDING 151124 Waiting for check mail-in
#2 pending PENDING 151132 Check has been received
#3 canceled CANCELED 151125 Payin has been canceled due to an issue with the check
Updated on: 4/4/2024, 2:50:39 PM