infomaniacs/

affiliates-php

v1.2 2018-11-06 02:34 UTC

This package is not auto-updated.

Last update: 2024-10-02 13:19:48 UTC


README

安装

通过 Composer

$ composer require infomaniacs/affiliates-php

用法

$affiliates = new \AffiliatesPhp\Affiliates(
    'username@provedor.com', // email da conta em afffiliates infomaniacs
    '619c028154a5ef4cb32b131aa25b43dc' // api_key
);

$affiliates->register(
    '5b7cea5327a57', //ref afiliado
    '0001', // identificão da transação
    300.00 // valor total da venda,
    'credit_card' // método de pagamento -> ('credit_card', 'recurrent', 'ticket', 'installment_ticket')
);

$affiliates->update(
    '0001', // identificão da transação
    'awaiting_payment' // status -> ('awaiting_payment', 'approved', 'refunded', 'canceled')
);