9. Available Web-Components

Web components provide a user-friendly solution for partners looking to implement a streamlined and interactive payment system. Its ease of inclusion and integration make it simple to set up and customize, providing a seamless user experience from onboarding to transaction and batch processing, to eventual payouts.

1. Onboarding

<pay-engine
    id="elementID"
    merchant-id="<Merchant ID>"
    hash="<HMAC>"
    type="boarding">
</pay-engine>

2. Transactions

<pay-engine
    id="elementID"
    merchant-id="<Merchant ID>"
    hash="<HMAC>"
    type="transactions">
</pay-engine>

3. Batch Settlements

<pay-engine
    id="elementID"
    merchant-id="<Merchant ID>"
    hash="<HMAC>"
    type="payouts"
    view-type="settlement">
</pay-engine>

4. Payouts (Funding)

<pay-engine
    id="elementID"
    merchant-id="<Merchant ID>"
    hash="<HMAC>"
    type="payouts"
    view-type="funding">
</pay-engine>

5. Credit Card Form

<pay-engine
    id="elementID"
    merchant-id="<Merchant ID>"
    hash="<HMAC>"
    type="creditcardform"
    show-zip="true" >
</pay-engine>

6. ACH Form

<pay-engine
    id="elementID"
    merchant-id="<Merchant ID>"
    hash="<HMAC>"
    type="bankaccountform">
</pay-engine>

7. Device Management

<pay-engine
    id="elementID"
    merchant-id="<Merchant ID>"
    hash="<HMAC>"
    type="devices">
</pay-engine>

8. Dispute Management (Contact support to enable)

<pay-engine
    id="elementID"
    merchant-id="<Merchant ID>"
    hash="<HMAC>"
    type="disputes">
</pay-engine>

9. Plaid Connect (Plaid Account Required)

<pay-engine
    id="elementID"
    merchant-id="<Merchant ID>"
    hash="<HMAC>"
    type="plaidconnect">
</pay-engine>

10. Dashboard (Merchant's GMV)

<pay-engine
    id="elementID"
    merchant-id="<Merchant ID>"
    hash="<HMAC>"
    type="dashboard">
</pay-engine>

11. Virtual Terminal

<pay-engine
    id="elementID"
    merchant-id="<Merchant ID>"
    hash="<HMAC>"
    type="merchant-terminal">
</pay-engine>

12. Gateway Connection

<pay-engine
    id="elementID"
    merchant-id="<Merchant ID>"
    hash="<HMAC>"
    type="gateway-connect"
    gateway-id="<GATEWAY-ID>">
</pay-engine>

Please see Gateway Orchestration for more details

Last updated