Check Payments
The check payment component allows you to let your customers originate checks. The component takes the user through all the required stages:
- Set amount
- Review and submit the check payment
Implementation
Web Components
Add the check-payments element to your app where you'd like it to be presented.
<unit-elements-check-payment
    account-id="1105561"
    customer-token=""
    theme=""
    initial-stage-back-button="true"
    final-stage-done-button="true"
></unit-elements-check-payment>
Inputs:
| Name | Type | Required | Description | 
|---|---|---|---|
| customer-token | string | Yes | A Unit Customer token. Required Scopes: check-payments check-payments-write | 
| account-id | string | No | Unit account id. The account from which money is being sent. | 
| theme | string | No | A URL that specifies the UI configuration. | 
| language | string | No | A URL that specifies the language configuration. | 
| initial-stage-back-button | boolean string ("true" / "false") | No | An action button at the first stage of the payment flow. Default "false" | 
| final-stage-done-button | boolean string ("true" / "false") | No | An action button at the final stage of the payment flow. Default "false" |