PHP Classes

File: examples/invoice.php

Recommend this page to a friend!
  Classes of Saeb Khanzadeh   Gap SDP API   examples/invoice.php   Download  
File: examples/invoice.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Gap SDP API
Send messages with the Gap instant messenger
Author: By
Last change:
Date: 5 years ago
Size: 254 bytes
 

Contents

Class file image Download
<?php

require dirname(__FILE__) . '/../vendor/autoload.php';

use
Gap\SDP\Api;

$token = {HERE YOUR TOKEN};

$gm = new Api($token);

$chat_id = {HERE CHAT ID};

// send invoice
$invoiceId = $gm->sendInvoice($chat_id, 1000, 'My Invoice Description...');