A simple API wrapper for Gigapay's APIs. It gives you helper methods that will make your work with gigapay's
API easy, fast and efficient
Laravel-Gigapay manage resources like Employees
, Invoices
, Payouts
, Pricing
and Webhooks
.
It uses the APIs provided by Gigapay
, here is it's API documentation
You can also look into the postman collection to call the API by yourself to better understand it.
To understand the Event flow of Gigapay
, you can see it's Event Documentation
Install the package via composer:
composer require mazimez/laravel-gigapay
Publish the config file:
php artisan vendor:publish --provider="Mazimez\Gigapay\GigapayServiceProvider"
The published config file config/gigapay.php
looks like:
<?php
use Mazimez\Gigapay\Events\EmployeeClaimed;
use Mazimez\Gigapay\Events\EmployeeCreated;
use Mazimez\Gigapay\Events\EmployeeNotified;
use Mazimez\Gigapay\Events\EmployeeVerified;
use Mazimez\Gigapay\Events\InvoiceCreated;
use Mazimez\Gigapay\Events\InvoicePaid;
use Mazimez\Gigapay\Events\PayoutAccepted;
use Mazimez\Gigapay\Events\PayoutCreated;
use Mazimez\Gigapay\Events\PayoutNotified;
return [
/*
|--------------------------------------------------------------------------
| Gigapay Server URL
|--------------------------------------------------------------------------
|
| Gigapay generally has 2 servers, 1 for demo and 1 for production
| both server has different url, by default it will use the demo server URL
| but you can change it from your project's .env file.
| also currently Gigapay's APIs are at version 2, so it will use version 2
|
*/
'server_url' => env('GIGAPAY_SERVER_URL', 'https://api.demo.gigapay.se/v2'),
/*
|--------------------------------------------------------------------------
| Gigapay Token
|--------------------------------------------------------------------------
|
| Gigapay uses this token to identify and authenticate requests,
| you can get this Token from your Gigapay account
| Note that Tokens are different for demo server and production server
| define it in your .env.
|
*/
'token' => env('GIGAPAY_TOKEN'),
/*
|--------------------------------------------------------------------------
| Gigapay integration id
|--------------------------------------------------------------------------
|
| Integrations are like Transactions, it's a parent object of all other objects in the Gigapay API
| whenever you do any action in Gigapay, it will be in integration and it has a integration id
| Gigapay's API need integration id, you can create integration with Gigapay APIs from https://developer.gigapay.se/#create-an-integration
|
*/
'integration_id' => env('GIGAPAY_INTEGRATION_ID'),
/*
|--------------------------------------------------------------------------
| Gigapay lang
|--------------------------------------------------------------------------
|
| Language for the API responses. default will be english(en)
|
*/
'lang' => env('GIGAPAY_LANG', 'en'),
/*
|--------------------------------------------------------------------------
| Gigapay events mapping
|--------------------------------------------------------------------------
|
| mapping of Gigapay's different webhook events to route that will receive the webhook event
|
*/
'events_mapping' => [
'Employee.created' => 'employee-created',
'Employee.notified' => 'employee-notified',
'Employee.claimed' => 'employee-claimed',
'Employee.verified' => 'employee-verified',
'Payout.created' => 'payout-created',
'Payout.notified' => 'payout-notified',
'Payout.accepted' => 'payout-accepted',
'Invoice.created' => 'invoice-created',
'Invoice.paid' => 'invoice-paid',
],
/*
|--------------------------------------------------------------------------
| Gigapay Events
|--------------------------------------------------------------------------
|
| List of Gigapay events that you can listen to by Listeners.
|
*/
'events_list' => [
EmployeeClaimed::class,
EmployeeCreated::class,
EmployeeNotified::class,
EmployeeVerified::class,
InvoiceCreated::class,
InvoicePaid::class,
PayoutAccepted::class,
PayoutCreated::class,
PayoutNotified::class,
]
];
once the config file is ready, you need to add some variables into your .env
file. there are 4 variables
- GIGAPAY_TOKEN = You will get this token from your
gigapay
account - GIGAPAY_INTEGRATION_ID = You can get this id from your
gigapay
account or fromGigapay's
API - GIGAPAY_SERVER_URL =
gigapay
has 2 servers, demo and production. both's server's URL can be found on Gigapay's documentation - GIGAPAY_LANG = the language in which
Gigapay
will give it's responses or errors
keep in mind that Gigapay
has separate token and integration id for each server, so whenever you switch server, remember to update SERVER URL with tokens and integration id too.
GIGAPAY_TOKEN="your-gigapay-account-token"
GIGAPAY_INTEGRATION_ID="yours-gigapay-account-integration-id"
GIGAPAY_SERVER_URL="https://api.demo.gigapay.se/v2"
GIGAPAY_LANG="en"
An Employee is an individual performing tasks within your organization, employed or sub-contracted by Gigapay
. To add an Employee to your organization you can create an Employee object. The Employee will be notified and Gigapay
will verify their identity and working permits.
you can learn more about that from Gigapay
doc
- To create an Employee, you need it's
name
and eitheremail
orcellphone_number
other data are not mandatory. - you can create Employee with
create
method by passing all the data as arguments and you can also usecreateByArray
method which takes and array with the same data, in that you only need to add the data that's required. - the metadata is a
Json
object so remember to usejson_encode()
method. - you can get more info about employee's object from
Gigapay
doc
use Mazimez\Gigapay\Employee;
//#1 creating Employee by passing all data in arguments
$employee = Employee::create(
'jhone doe', //employee's name (required)
'test@gmail.com', //employee's email (has to be unique)
null, //employee's phone number(proper swidish phone number, has to be unique)
'SWE', //employee's country
json_encode([
"data" => "data from your system" //any metadata that you want to add from you system(json encoded)
]),
'1-2-3' //employee's ID(has to be unique)
);
return $employee->getJson();
//#2 creating Employee by passing all data in an array
$employee = Employee::createByArray([
"id"=>"1-2-3", //employee's ID(has to be unique)
"name"=>"jhone doe", //employee's name (required)
"email"=>"test@gmail.com", //employee's email (has to be unique)
"metadata"=>json_encode([
"data" => "data from your system" //any metadata that you want to add from you system(json encoded)
]),
"cellphone_number"=>"123456789", //employee's phone number(proper swidish phone number, has to be unique)
"country"=>"SWE", //employee's country
]);
return $employee->getJson();
the getJson()
method will return the Employee's object in JSON format
- Employee resource can be updated any time, the data that can be updated are
id
,name
,email
,country
,cellphone_number
,metadata
. - each data can be updated by calling separate method and also by updating the values on employee object and then calling save() method to update the whole employee object.
- remember to use
json_encode()
before saving the metadata - also, to update the ID of employee, please use the septate method
updateId()
instead ofsave()
, sincesave()
will try to update the employee with current id(new id that doesn't exists inGigapay's
Database) - the rules about uniqueness and format still applies here. you can get for info from
Gigapay
doc
use Mazimez\Gigapay\Employee;
//#1: updating values using separate methods
$employee = Employee::findById('123'); //finding employee by id
$employee = $employee->updateCountry('SWE'); //updating country
$employee = $employee->updateName("test employee"); //updating name
$employee = $employee->updateEmail("jhone@doe.com"); //updating email
$employee = $employee->updateMetaDate(json_encode([
"data" => "some more data from you system", //updating metadata
]));
$employee = $employee->updateId('12354'); //updating id
return $employee->getJson();
//#2 updating values using save() methods
$employee = Employee::findById('dvsdvsdv'); //finding employee by id
$employee->country = "SWE"; //updating country
$employee->name = "test employee"; //updating name
$employee->email = "jhone@32323doe.com"; //updating email
$employee->metadata = json_encode([
"data" => "some more data from you system", //updating metadata
]);
$employee->save(); //saving the employee object
return $employee->getJson();
The Employee::list() method will return the ListResource for employees that you can use to apply filters and search into all your employees. you can get more info from Gigapay doc
use Mazimez\Gigapay\Employee;
$employees = Employee::list(); //getting list of employee
$employees = $employees->paginate(1, 5); //add pagination
return $employees->getJson();
You can retrieve any employee by it's id. you can get more info from Gigapay doc
use Mazimez\Gigapay\Employee;
$employee = Employee::findById('1'); //getting employee by it's id
return $employee->getJson();
Replacing any Employee will actually change the ID of that employee as well as all the data of that employee with the data you have provided. keep in mind that other connect with this employee (like it's payouts) will still stay connected to it. so here you are not creating a new employee, you can just replace an existing employee with new data. refer to Gigapay doc for more info.
use Mazimez\Gigapay\Employee;
$employee = Employee::findById('1'); //getting employee by it's id
$employee = $employee->replace([ //replacing the employee with new data
"id" => "1-2-3-4-5-6",
"name" => "jhone doe",
"email" => "testcdcdd@gmail.com",
"metadata" => json_encode([
"data" => "data from your system"
]),
"country" => "SWE",
]);
return $employee->getJson(); //return the new employee instance
You can delete any employee by calling the destroy method on Employee instance but we can not delete an Employee after a Payout
has been registered to it. get for info from Gigapay
doc
use Mazimez\Gigapay\Employee;
$employee = Employee::findById('1'); //getting employee by it's id
$employee->destroy(); //deletes the employee
return $employees->getJson(); //return the empty Employee instance
Employee will get 1 email to join, on the mail-id that we provided while creating the Employee, we can also resend that mail in case something gets wrong. After resending, you need to wait at least 24 hours before resending again. get for info from Gigapay
doc
use Mazimez\Gigapay\Employee;
$employee = Employee::findById('1'); //getting employee by it's id
$employee->resend(); //resend invite to the employee
There are some helper methods that you can use on employee instance. for example:
getAllPayouts()
that will return the ListResource forPayouts
on that Employee.
use Mazimez\Gigapay\Employee;
$employee = Employee::findById('1'); //getting employee by it's id
$payouts = $employee->getAllPayouts(); //gettin payouts for that perticular employee
return $payouts->getJson(); //returning the payouts in json
To make a payout
to an Employee you need to create a Payout
object. The Employee is notified of the Payout
once the corresponding Invoice is paid. The Employee will need to sign and accept the Payout
before it is disbursed to their account.
you can learn more about that from Gigapay
doc
- To create an
Payout
, you either need it'samount
orinvoiced_amount
orcost
, anyone one of these data is required. - also you need to add
Employee id
anddescription
for thatpayout
. also employee needs to be verified before you start paying him/her salaries(amount
). - just like Employee resource, Payout also have 2 methods for creation.
create
method takes data in Arguments whilecreateByArray
takes data as an Array. - while providing metadata, remember to use
json_encode()
method. - you can get more info about
Payout
's pricing from Gigapay doc
use Mazimez\Gigapay\Payout;
//#1 creating payout with arguments
$payout = Payout::create(
'9aa16b42-d0f3-420f-ba57-580c3c86c419', //employee id
'Instagram samarbete 2021-11-13.', //description for payout
120, //amount of payout
null, //cost of payout
null, //invoice amount of payout
'SEK', //currency of payout
json_encode([
"data" => "data from your system" //metadata of payout
]),
null, //The time at which the gig will start. Displayed as ISO 8601 string.
null, //The time at which the gig will end. Displayed as ISO 8601 string.
3 //Unique identifier for the object.
);
return $payout->getJson();
//#2 creating payout by array
$payout = Payout::createByArray([
"employee" => "1-2-3", //employee id
"invoiced_amount" => "120", //invoice amount of payout
"description" => "test description", //description for payout
"metadata" => json_encode([
"data" => "data from your system" //metadata of payout
]),
"currency"=>"SEK", //currency of payout
"id"=>"payout-1-2-3" //Unique identifier for the object.
]);
return $payout->getJson();
the getJson()
method will return the Payout
's object in JSON format
Gigapay
also provides API to create payouts and employee all together.- while creating new Payout and Employee togher, it's important to note that you should use
invoiced_amount
since other type of filed likecost
andamount
needs employee to be verified and since it's new Employee, it wont be verified at that point. - if you are using this API with some existing Employee then you can use
cost
andamount
too, it wont create new Employee but just merge it with the given data. - the arguments for this method is almost same as normal create method, only change is that now instead of employee-id, you need to pass an array with info like Employee
email
andname
etc. - you can get more info from Gigapay doc
- thanks @rolandlluka for suggesting this method and adding a pull-request for it. I hope you will be suggesting more improvements too😅
use Mazimez\Gigapay\Payout;
$payout = Payout::createInline(
[
"name" => "jhone dao", //name (required)
"email" => "jhone@dau.com", //email (required)
"country" => "SWE", //country(optional)
"cellphone_number" => "+46760024938"//phone number(optional)
], //inline employee data
'Instagram samarbete 2021-11-13.', //description for payout
null, //amount of payout
null, //cost of payout
120, //invoice amount of payout
'SEK', //currency of payout
json_encode([
"data" => "data from your system" //metadata of payout
]),
null, //The time at which the gig will start. Displayed as ISO 8601 string.
null, //The time at which the gig will end. Displayed as ISO 8601 string.
3 //Unique identifier for the object.
);
return $payout->getJson();
Gigapay
also provides API to create multiple payouts at once- All of this payouts will be added to the same Invoice object.
- it takes an array(json) in the payout object structure.
- you need to at least provide
employee-id
,description
and either one fromamount
,cost
,invoice_amount
. other things are not required. - you can create payout to different employees all together.
- you can get more info from Gigapay doc
use Mazimez\Gigapay\Payout;
//creating 3 payouts to 3 different employees (with different specification)
$data = collect();
//any logic for calculating the payout value
$data->push([
"employee" => "employee-id-1",
"description" => "test description",
"invoiced_amount" => "210",
]);
//any logic for calculating the payout value
$data->push([
"employee" => "employee-id-2",
"description" => "test description",
"cost" => "210",
"country" => "SWE",
"metadata" => [
"data" => "data about your system"
],
]);
//any logic for calculating the payout value
$data->push([
"id" => "test-id",
"employee" => "employee-id-3",
"description" => "test description",
"amount" => "210",
"country" => "SWE",
"currency" => "SEK"
]);
//creating multiple payouts by giving the array
$payouts = Payout::createMultiple($data->toArray());
return $payouts; //returns an array of Payout objects
The Payout::list() method will return the ListResource for payouts
that you can use to apply filters and search into all your payout
. you can get more info from Gigapay
doc
use Mazimez\Gigapay\Payout;
$payouts = Payout::list(); //getting list of employee
$payouts = $payouts->paginate(1, 5); //add pagination
return $payouts->getJson();
You can retrieve any payout
by it's id. you can get more info from Gigapay
doc
use Mazimez\Gigapay\Payout;
$payout = Payout::findById('1'); //getting payout by it's id
return $payout->getJson();
You can delete any payout
by calling the destroy method on Payout
instance but we can not delete a payout
belonging to a paid Invoice or an Invoice on credit. get more info from Gigapay doc
use Mazimez\Gigapay\Payout;
$payout = Payout::findById('1'); //getting payout by it's id
$payout->destroy(); //deletes the payout
return $payout->getJson(); //return the empty payout instance
Once the Payout
is been paid, Employee should get the mail about his/her payout
. you can also resend the mail using the resend() method on payout
instance. keep in mind that mail can only be sent once the Payout
has been paid. get more info from Gigapay
doc
use Mazimez\Gigapay\Payout;
$payout = Payout::findById('89f9cfbe-f1ec-4d17-a895-21cdb584eb4d'); //getting payout by it's id
$payout->resend(); //resend mail to the employee
There are some helper methods that you can use on payout
instance. for example:
expandInvoice()
this method will expand the invoice field onpayout
and gives the whole invoice's JSON data.expandEmployee()
this method will expand the employee field onpayout
and gives the whole employee's JSON data.
you can also chain this method on same Payout
instance
use Mazimez\Gigapay\Payout;
$payout = Payout::findById('89f9cfbe-f1ec-4d17-a895-21cdb584eb4d'); //getting payout by it's id
$payout->expandInvoice()->expandEmployee();//expanding invoice and employee field
return $payout->getJson(); //returning the payouts in json(with expanded values)
An Invoice groups Payouts
together. It is a managed object, you can not create them directly. When a Payout
is created it is added to the Invoice that is currently open. If there is no open Invoice, a new will be created.
you can learn more about that from Gigapay doc
The Invoice::list()
method will return the ListResource for invoices that you can use to apply filters and search into all your invoice. you can get more info from Gigapay
doc
use Mazimez\Gigapay\Invoice;
$invoices = Invoice::list(); //getting list of invoices
$invoices = $invoices->paginate(1, 5); //add pagination
return $invoices->getJson();
You can retrieve any invoice by it's id. you can get more info from Gigapay
doc
use Mazimez\Gigapay\Invoice;
$invoice = Invoice::findById('f3ee8cb8-fc95-4ea2-9b2e-18875b0d759a');//getting invoice by it's ID
return $invoice->getJson();
- The only fields that can be updated in invoice resource are
id
andmetadata
. - just like Employee, they have the separate method for that and also a
save()
method that will update the whole instance withGigapay
- To update the ID of invoice, please use the septate method
updateId()
instead ofsave()
, sincesave()
will try to update the invoice with current id(new id that doesn't exists inGigapay's
Database)
use Mazimez\Gigapay\Invoice;
//#1: updating values using separate methods
$invoice = Invoice::findById('4bb6bd41-643e-43fe-af09-206c755088c9');
$invoice = $invoice->updateId("123"); //updating id
$invoice =$invoice->updateMetaDate(json_encode([
"data" => "data from your system" //updating metadata
]));
//#2 updating values using save() methods
$invoice->metadata = json_encode([
"data" => "data from your system" //updating metadata
]);
$invoice->save();
You can delete any invoice by calling the destroy method on invoice instance but we can not delete a paid Invoice or an Invoice on credit. get for info from Gigapay
doc
use Mazimez\Gigapay\Invoice;
$invoice = Invoice::findById('f3ee8cb8-fc95-4ea2-9b2e-18875b0d759a');//getting invoice by it's ID
$invoice->destroy(); //deletes the invoice
return $invoice->getJson(); //return the empty invoice instance
- The Pricing Resource allows you to calculate the price of payout you would like to make, and to retrieve the price information about previously made payouts. The Resource is designed to mirror the Payouts Resource as closely as possible, e.g. the same request can be used to retrieve the price information of a Payout you'd like to make and to actually make it.
- Either
amount
,invoiced_amount
orcost
is used as a basis for calculating the Pricing breakdown. - One is provided and the other are calculated based on that. Their definitions are:
amount
: net amount paid out plus obligations paid by the recipient.invoiced_amount
:amount
plus obligations paid by the employer.cost
:invoiced_amount
plus Gigapay's fee. This is the final amount you end up paying.
The Pricing::list()
method will return the ListResource for pricing that you can use to apply filters. you can get more info from Gigapay
doc
use Mazimez\Gigapay\Pricing;
$pricing = Pricing::list(); //getting list of pricing
$pricing = $pricing->paginate(1, 5); //add pagination
return $pricing->getJson();
You can retrieve any payout's Pricing info by payout's id. you can get more info from Gigapay
doc
use Mazimez\Gigapay\Pricing;
$pricing = Pricing::findById('89f9cfbe-f1ec-4d17-a895-21cdb584eb4d')//getting pricing info by payout's ID
return $pricing->getJson();
- Pricing resource mainly helps you calculating the payouts before actually making it. you can use
Pricing::calculatePricing
method to calculate any payout without actually making it. - while calculating pricing, you need to give
employee_id
as well as the amount that you want to pay, you can give either theamount
orcost
orinvoiced_amount
according to your need.
use Mazimez\Gigapay\Pricing;
$pricing = Pricing::calculatePricing(
'0d42728d-b565-402d-80aa-a20bec94a9a2', //id of employee that you want to pay
'SEK', //currency of payout
null, //cost (only 1 out cost, amount and invoiced_amount is allowed)
'120', //amount (only 1 out cost, amount and invoiced_amount is allowed)
null, //invoiced_amount (only 1 out cost, amount and invoiced_amount is allowed)
'test', //description
false, //full_salary_specification
json_encode([
"data" => "data from your system" //metadata of payout
]),
null, //start_at
null, //end_at
null, //id
);
return $pricing->getJson();
Gigapay
also provides API to calculate the payout in bulk(multiple payouts at once)- it takes an array(json) in the payout object structure.
- you need to at least provide
employee-id
, and either one fromamount
,cost
,invoice_amount
. other things are not required (description
is also not required). - the you can calculate pricing for different employees all together.
- you can get more info from Gigapay doc
use Mazimez\Gigapay\Pricing;
//calculating pricing info for 3 different payouts to 3 different employees (with different specifications)
$pricings = Pricing::calculateBulk([
[
"employee" => "employee-id-1",
"invoiced_amount" => "210",
],
[
"employee" => "employee-id-2",
"description" => "test description",
"cost" => "210",
"country" => "SWE",
],
[
"id" => "test-id",
"employee" => "employee-id-3",
"description" => "test description",
"amount" => "210",
"country" => "SWE",
"currency" => "SEK"
],
]);
return $pricings; //returns an array of pricing objects
- Webhooks allows you to receive real-time status updates any time an event happens on your gigapay account. basically it sends you the data of the resource on which the Action is performed.
- there are total of 9 events, you can get more information from Gigapay doc
- laravel-gigapay provides a simple way to handle all this Webhooks by Laravel event. laravel-gigapay can fire an Event whenever any Webhook sends the data. and then you can listen to this events by Listeners
- In order to receive the webhooks and Use the Listeners, you need to first set-up some things in you Laravel project.
App URL
: first you need to set theAPP_URL
in you .env file if it's not already set since this URL will be used to register the webhooks.
APP_URL="https://youwebsite.url"
Event Discovery
: in order for your Listeners to directly discover the Events from larave-gigapay. you need to enable the Auto discovery.
- you can do that by going to your project's
EventServiceProvider
and change the methodshouldDiscoverEvents
to returntrue
.
/**
* Determine if events and listeners should be automatically discovered.
*
* @return bool
*/
public function shouldDiscoverEvents()
{
return true;
}
- If you don't want auto discovery to be enabled(or your Laravel version does not support auto discovery) then you can also manually add those Listeners into the
$listen
array.
protected $listen = [
Registered::class => [
SendEmailVerificationNotification::class, //default email verification listener
],
//adding our listeners
EmployeeClaimed::class => [
EmployeeClaimedListener::class,
],
EmployeeCreated::class => [
EmployeeCreatedListener::class,
],
EmployeeNotified::class => [
EmployeeNotifiedListener::class,
],
EmployeeVerified::class => [
EmployeeVerifiedListener::class,
],
InvoiceCreated::class => [
InvoiceCreatedListener::class,
],
InvoicePaid::class => [
InvoicePaidListener::class,
],
PayoutAccepted::class => [
PayoutAcceptedListener::class,
],
PayoutCreated::class => [
PayoutCreatedListener::class,
],
PayoutNotified::class => [
PayoutNotifiedListener::class,
],
];
Command gigapay:webhook
: laravel-gigapay provides the command that will register all the webhooks with theAPP_URL
and it also has a route that will receive this webhooks and fire the events. so once you run this command withartisan
you webhooks will get registered
php artisan gigapay:webhook
-
once this steps are done, your webhooks for
Gigapay
are set-up. now you only need to add the listeners that can listen to this webhook's event. -
here is one example of the Listener that will listen to the event of
Employee.created
<?php
namespace App\Listeners;
use Mazimez\Gigapay\Events\EmployeeCreated;
use Monolog\Logger;
use Monolog\Handler\StreamHandler;
class EmployeeCreatedListener
{
/**
* Create the event listener.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Handle the event.
*
* @param EmployeeCreated $event
* @return void
*/
public function handle(EmployeeCreated $event)
{
//stuff you can do with this event resource to update you system
$employee = $event->getResource();
//logging data just as an example
$logger = new Logger('gigapay-webhooks-logs');
$logger->pushHandler(new StreamHandler(storage_path('logs/gigapay/gigapay-webhooks-logs.log')));
$logger->info('employee created with id of ' . $employee->id);
}
}
- In the above example, the
EmployeeCreatedListener
is listening to the event ofEmployeeCreated
in it'shandle
method. - In the
handle
method, you will get the instance ofEmployeeCreated
event on which you can call the methodgetResource
that will give you the resource thats related to this event. - The
getResource
method can return different resource based on the events. it can beEmployee
,Payout
orInvoice
. - once you got the resource you can use that to update your system.
- since there are total 9 webhooks, there is total 9 different events. you can get that events list from config file of gigapay.php as
events_list
. - you have to create 9 different listeners just like above to handle different webhook's events.
The Webhook::list() method will return the ListResource for webhooks that you can use to apply filters and search into all your webhooks. you can get more info from Gigapay doc
use Mazimez\Gigapay\Webhook;
$webhooks = Webhook::list(); //getting list of webhooks
$webhooks = $webhooks->paginate(1, 5); //add pagination
return $webhooks->getJson();
- If you want to configure the
Gigapay
webhooks in other way then Laravel event. then you can also use thecreate
andcreateByArray
method just like you can do on other resources. - while creating webhooks, only
url
andevents
fields are required.
use Mazimez\Gigapay\Webhook;
//creating webhook with create method
$webhook = Webhook::create(
"https://youwebsite.url/webhooks", //the url on which the webhook will send data
"Employee.created", //name of event
null, //secret_key
json_encode(["date" => "data from your system"]),//json encoded data
null, //unique id
);
return $webhook->getJson();
//creating webhook with createByArray method(only required parameters)
$webhook = Webhook::createByArray([
"url" => "https://youwebsite.url/webhooks",
"events" => "Employee.created",
]);
return $webhook->getJson();
You can retrieve any webhook by it's id. you can get more info from Gigapay doc
use Mazimez\Gigapay\Webhook;
$webhook = Webhook::findById('1'); //getting webhook by it's id
return $webhook->getJson();
- Webhook resource can be updated any time, the data that can be updated are
id
,url
,event
,metadata
,secret_key
. - each data can be updated by calling separate method and also by updating the values on employee object and then calling save() method to update the whole employee object.
- remember to use
json_encode()
before saving the metadata - also remember that events as to be a string while saving, not in array.
- also, to update the ID of employee, please use the septate method
updateId()
instead ofsave()
, sincesave()
will try to update the webhook with current id(new id that doesn't exists inGigapay's
Database) - the rules about uniqueness and format still applies here. you can get for info from
Gigapay
doc
use Mazimez\Gigapay\Webhook;
//#1: updating values using separate methods
$webhook = Webhook::findById('webhook-id'); //finding webhook by id
$webhook = $webhook->updateId('new-webhook-id'); //updating id
$webhook = $webhook->updateUrl("https://youwebsite.new.url/webhooks"); //updating url
$webhook = $webhook->updateEvent("Payout.created"); //updating event
$webhook = $webhook->updateSecretKey("new-secret.key"); //updating secret-key
$webhook = $webhook->updateMetaDate(json_encode([
"data" => "some more data from you system", //updating metadata
]));
return $webhook->getJson();
//#2 updating values using save() methods
$webhook = Webhook::findById('webhook-id'); //finding webhook by id
$webhook->url = "https://youwebsite.new.url/webhooks"; //updating url
$webhook->event = "Payout.created"; //updating event
$webhook->secret_key = "new-secret.key"; //secret-key
$webhook->metadata = json_encode([
"data" => "some more data from you system", //updating metadata
]);
$webhook->save(); //saving the webhook object
return $webhook->getJson();
similar to employee, webhook can also be replaced. this will update the ID of webhook too. you can get more info from Gigapay doc.
use Mazimez\Gigapay\Webhook;
$webhook = Webhook::findById('1'); //getting webhook by it's id
$webhook->replace([//replacing webhook with new data
'url' => "https://jobmatchr.se/webhooks/"
]);
return $webhook->getJson();//returning new webhook instance
You can delete any webhook by calling the destroy method on Webhook instance. get for info from Gigapay
doc
use Mazimez\Gigapay\Webhook;
$webhook = Webhook::findById('webhook-id'); //getting webhook by it's id
$webhook->destroy(); //deletes the webhook
return $webhooks->getJson(); //return the empty webhook instance
This is the class that provides you with some helper methods to get the list of Any resource from Gigapay
. The methods that you can use is:
This will add the parameter for pagination into Gigapay
's APIs. it take 2 parameter, page
and page_size
. you can directly chain this method on any ListResource instance,
you can also refer the Gigapay
doc for this.
use Mazimez\Gigapay\Employee;
$employees = Employee::list();
$employees->paginate($page, $page_size); //paginate methode with parameters
return $employees->getJson();
This will add the parameter for searching into Gigapay
's APIs. it take 1 parameter, search
. you can directly chain this method on any ListResource instance.
use Mazimez\Gigapay\Employee;
$employees = Employee::list();
$employees->search('test'); //chaining search methode
return $employees->getJson();
This will add the parameter to expand any resource, for example a Payout
has an associated Employee identifier. Those objects can be expanded
use Mazimez\Gigapay\Payout;
$payouts = Payout::list();
$payouts->expand('employee'); //exapanding employee resource
return $payouts->getJson();
you can also expand multiple resource just by chaining the expand
method.
you can also refer the Gigapay doc for this.
use Mazimez\Gigapay\Payout;
$payouts = Payout::list();
//exapanding employee and invoice resource
$payouts->expand('employee')->expand('invoice');
return $payouts->getJson();
This will add the parameter for filtering regarding timestamp or relational filters. you just need to add the suffix like _before
or _after
. you can also refer the Gigapay
doc for this. keep in mind that here all the timestamps are in ISO 8601 string. you can also chain this method and add multiple filters
use Mazimez\Gigapay\Employee;
$employees = Employee::list();
//adding filter to get the employees who are created before 10 days
$employees->addFilter('created_at_before', Carbon::now()->subDays(10)->toISOString());
//adding filter to get the onty verfied employees.
$invoice->addFilter('verified_at_null', 'false');
return $invoice->getJson();
This will return the JSON response we get from Gigapay
API with all our filters applied.
use Mazimez\Gigapay\Employee;
$employees = Employee::list();
return $invoice->getJson(); //returning json response
Laravel-Gigapay
also provided some helper methods to deal with errors and exception given byGigapay
APIs.- whenever
Gigapay's
API return any error, it will be thrown asGigapayException
, that you cancatch
and them display the error properly Gigapay
normally return the errors injson
format with field name and error with that field.- the
json
data about that error can be show usinggetJson()
method onGigapayException
instance. GigapayException
also provide a methodgetErrorMessage
that will convert thejson
into single message that you can show to end user.
use Mazimez\Gigapay\Exceptions\GigapayException;
use Mazimez\Gigapay\Invoice;
try {
return Invoice::findById("non-exiting-id")->getJson(); //code that will surely gives error.
} catch (GigapayException $th) { //catching the error with GigapayException
return [
'message' => $th->getErrorMessage(), //the error message
'json' => $th->getJson() //the json
];
} catch (Exception $th) {
return $th->getMessage(); //catching exception other then GigapayException
}
- result
{
"message": "Problem with detail->Not found.",
"json": {
"detail": "Not found."
}
}