Download the PHP package ccpayment/php-sdk without Composer

On this page you can find all versions of the php package ccpayment/php-sdk. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package php-sdk

php-sdk

Document Address: https://doc.ccpayment.com/ccpayment-for-merchant/ccpayment-introduction

Install via composer

`

Example usage

Reference API


Obtain the token list supported by merchants

request:

Name Required Type Description
$appid Y string Partner unique ID, once a merchant has been on-boarded with CCPayment Pay, the merchant will be provided with the credentials with appId
$appSecret Y string Partner unique ID, once a merchant has been on-boarded with CCPayment Pay, the merchant will be provided with the credentials with appSecret

Example:

response

Name Required Type Description
code Y Integer
msg Y string
data Y object
data.list Y array
data.list.token_id Y string The unique identifier of token
data.list.crypto Y string crypto symbol
data.list.name Y string Currency full name
data.list.price Y string Current price (in USD)
data.list.min Y string Minimum trading amount
data.list.logo Y string crypto logo

Obtain the list of the available networks for a certain token

request:

Name Required Type Description
$token_id Y string Returned token_id form token
$appid Y string the merchant will be provided with the credentials with appId
$appSecret Y string appSecret

Example:

response

Name Required Type Description
code Y Integer
msg Y string
data Y object
data.list Y array
data.list.token_id Y string The unique identifier of the network chain
data.list.crypto Y string crypto symbol
data.list.name Y string Currency full name
data.list.network Y string crypto network
data.list.chain Y string crypto chain
data.list.contract Y string Contract
data.list.logo Y string crypto logo
data.list.chain_logo Y string Network logo

Create payment order

Manage 100% of your front-end interactions and use our APIs to build your own checkout page.

request:

Name Required Type Description
$token_id Y string Returned token_id form token chain
$amount Y string Amount of Merchant's orders (in USD by default, cannot exceed 2 decimal places)
$product_price Y string Amount of Merchant's orders (in USD by default, cannot exceed 2 decimal places)
$merchant_order_id Y string Merchant orders, cannot be repeated
$denominated_currency Y string The currency for calculating the order price, it could be cryptocurrency or fiat currency
$remark N string remark
$appid Y string the merchant will be provided with the credentials with appId
$appSecret Y string appSecret

Example:

response

Name Required Type Description
code Y Integer
msg Y string
data Y object
data.order_id Y string CCPayment order id
data.crypto Y string crypto symbol
data.amount Y string Amount (in USD by default)
data.logo Y string crypto logo
data.network Y string network
data.pay_address Y string payment address

Generate a checkout URL

request:

Name Required Type Description
$valid_timestamp N Integer The validity period of the order.It is recommended that the validity period uploaded by the merchant should be less than the actual validity period of the merchant's order, due to the fact that it may take some time for the transaction on the chain to arrive.BTC will arrive within 24 hours and other tokens will usually arrive within 30 minutes.Unless the merchant specifies a validity period for the order, the order validity period will be set to 24 hours by default, and there is a maximum validity period of 10 days.
$amount Y string Amount of Merchant's orders (in USD by default, cannot exceed 2 decimal places)
$merchant_order_id Y string Merchant orders, cannot be repeated
$product_name Y string Merchandise name
$return_url N string The URL used to return to the merchant after the user completes the payment
$appid Y string the merchant will be provided with the credentials with appId
$appSecret Y string appSecret

Example:

response

Name Required Type Description
code Y Integer
msg Y string
data Y object
data.payment_url Y string URL link of payment

Call the withdrawal API to initiate withdrawals

request:

Name Required Type Description
$token_id Y string token_id returned by passing token list when sending crypto to a Cwallet account
$address Y string Pass the Cwallet ID when sending to a Cwallet account
$merchant_order_id Y string Merchant orders, cannot be repeated
$value Y string Quantity of withdrawal
$appid Y string the merchant will be provided with the credentials with appId
$appSecret Y string appSecret

Example:

response

Name Required Type Description
code Y Integer
msg Y string
data Y object
data.order_id Y string CCPayment order id
data.network_fee Y string network fee

The amount of USD converted into tokens

request:

Name Required Type Description
$token_id Y string Returned token_id from token chain or token list
$amount Y string Amount (USD by default)
$appid Y string the merchant will be provided with the credentials with appId
$appSecret Y string appSecret

Example:

response

Name Required Type Description
code Y Integer
msg Y string
data Y object
data.price Y string Crypto current price (in USD)
data.value Y string Number of corresponding currency

Obtain the network fee of a certain network

request:

Name Required Type Description
$token_id Y string Returned token_id from token chain
$appid Y string the merchant will be provided with the credentials with appId
$appSecret Y string appSecret

Example:

response

Name Required Type Description
code Y Integer
msg Y string
data Y object
data.token_id Y string
data.crypto Y string crypto symbol
data.fee Y string network fee

Obtain details of merchant's assets

request:

Name Required Type Description
$token_id N string Returned token_id form token list
$appid Y string the merchant will be provided with the credentials with appId
$appSecret Y string appSecret

Example:

response

Name Required Type Description
code Y Integer
msg Y string
data Y object
data.list Y array
data.list.token_id Y string Returned token_id form token list
data.list.crypto Y string crypto symbol
data.list.name Y string Currency full name
data.list.value Y string Quantity
data.list.price Y string Crypto current price (in USD)
data.list.logo Y string crypto logo

Check the Validity of Cwallet ID

request:

Name Required Type Description
$cId Y string cwallet id
$appid Y string Partner unique ID, once a merchant has been on-boarded with CCPayment Pay, the merchant will be provided with the credentials with appId
$appSecret Y string Partner unique ID, once a merchant has been on-boarded with CCPayment Pay, the merchant will be provided with the credentials with appSecret

Example:

response

Name Required Type Description
code Y Integer
msg Y string
data Y object
data.c_id Y string cwallet id
data.nickname Y string cwallet nikename

Notification of order callbacks


All versions of php-sdk with dependencies

PHP Build Version
Package Version
Requires rmccue/requests Version ^2.0
php Version >=7.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package ccpayment/php-sdk contains the following files

Loading the files please wait ....