onlinecheckwriter / quickpay
Streamlined Payment API with Multi-Channel Support: Seamlessly Integrate Checks, eChecks, Virtual Cards, ACH/Direct Deposits, and Wire Transfers into Your Application.
v1.01
2023-09-12 06:18 UTC
Requires
- php: ^7.3 || ^8.1
- ext-curl: *
- ext-json: *
- ext-mbstring: *
- guzzlehttp/guzzle: ^7.3
- guzzlehttp/psr7: ^2.0
README
onlinecheckwriter.com PHP Client is a simple but flexible wrapper for the onlinecheckwriter.com API. See full onlinecheckwriter.com documentation here.
Table of Contents
- Getting Started
- Examples
- Video Explanation
- API Documentation
- Mail Type explanation
Getting Started
- https://apiv3.onlinecheckwriter.com/
- Plz watch the video
- and please read the documentation
Registration
Installation
The recommended way to install onlinecheckwriter.com PHP Client is through Composer.
// Install Composer
curl -sS https://getcomposer.org/installer | php
// Add onlinecheckwriter.com PHP client as a dependency
composer require onlinecheckwriter/quickpay
After installing, you need to require Composer's autoloader:
require_once __DIR__ . '/vendor/autoload.php';
Usage
// setToken // setEnviorment : SANDBOX use onlinecheckwriter\Quickpay\Index; $ocw = (new Index()); $ocw->setToken("G5LoP94QISpOvk6i072yXDFBPwSjRS01foqlYPdVdYJ7li2NRkvzuHvYIzif") $ocw->setEnviorment("SANDBOX"); // setToken // setEnviorment : LIVE use onlinecheckwriter\Quickpay\Index; $ocw = (new Index()); $ocw->setToken("YOUR API TOKEN") $ocw->setEnviorment("LIVE");
Examples
We've provided various examples for you to try out here.
There are simple scripts to demonstrate how to create all the core onlinecheckwriter objects (checks, sent mail)
API Documentation
- Introduction
=======================
Copyright © 2023 onlinecheckwriter.com