PHP code example of tbclla / laravel-revolut-business
1. Go to this page and download the library: Download tbclla/laravel-revolut-business library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
tbclla / laravel-revolut-business example snippets
'providers' => [
// ...
tbclla\Revolut\Providers\RevolutServiceProvider::class,
],
'aliases' => [
// ...
'Revolut' => tbclla\Revolut\Facades\Revolut::class,
]
use tbclla\Revolut\Client;
use tbclla\Revolut\Facades\Revolut;
$revolut = resolve(Client::class);
$revolut->account()->details('11d79893-2703-489f-96e9-7946d9aba8b7');
// or simply
Revolut::account()->details('11d79893-2703-489f-96e9-7946d9aba8b7');
$accounts = Revolut::account()->all();
Revolut::account()->get('ac57ffc9-a5cb-4322-89d2-088e8a007a97');
Revolut::account()->details('11d79893-2703-489f-96e9-7946d9aba8b7');
Revolut::counterparty()->all();
Revolut::counterparty()->get('5435ff9e-bacd-430b-95c2-094da8662829');
Revolut::counterparty()->delete('5435ff9e-bacd-430b-95c2-094da8662829');
Revolut::counterparty()->create([
"profile_type" => "personal",
"name" => "John Smith",
"phone" => "+4412345678900"
]);
Revolut::counterparty()->create([
"company_name" => "John Smith Co.",
"bank_country" => "GB",
"currency" => "GBP",
"account_no" => "12345678",
"sort_code" => "223344",
"email" => "[email protected] ",
"address" => [
"street_line1" => "1 Canada Square",
"street_line2" => "Canary Wharf",
"region" => "East End",
"postcode" => "E115AB",
"city" => "London",
"country" => "GB"
]
]);
$builder = Revolut::counterparty()->build();
$builder->profileType('personal')
$builder->name('John Doe')
$builder->phone('+4412345678900');
$builder->create();
Revolut::counterparty()->build()->personal('John Doe', '+4412345678900')->create();
Revolut::counterparty()->build()->business('[email protected] ')->create();
$counterparty = Revolut::counterparty()->build()
->bankCountry('GB')
->currency('GBP')
->accountNumber('12345678')
->sortCode('223344');
$counterparty->companyName('John Smith Co');
// or for an individual
$counterparty->individualName('John', 'Smith');
// The counterparty builder accepts the address as an array
$counterparty->address([
"street_line1" => "1 Canada Square",
"street_line2" => "Canary Wharf",
"region" => "East End",
"postcode" => "E115AB",
"city" => "London",
"country" => "GB"
]);
// Alternatively, the builder lets you build the address fluently
$counterparty->streetLine1('1 Canada Square')
->streetLine2('Canary Wharf')
->region('East End')
->postcode('E115AB')
->city('London')
->country('GB');
Revolut::transfer()->create([
"request_id" => "e0cbf84637264ee082a848b",
"source_account_id" => "bdab1c20-8d8c-430d-b967-87ac01af060c",
"target_account_id" => "5138z40d1-05bb-49c0-b130-75e8cf2f7693",
"amount" => 123.11,
"currency" => "EUR",
]);
$transfer = Revolut::transfer()->build()
->sourceAccount($sourceAccountId)
->targetAccout($targetAccountId)
->amount(231.20)
->reference('payroll'); // optional
// If you want to keep the request ID for your records, retrieve it from the builder
$requestId = $transfer->request_id;
$transfer->create();
Revolut::payment()->create([
"request_id" => "e0cbf84637264ee082a848b",
"account_id" => "bdab1c20-8d8c-430d-b967-87ac01af060c",
"receiver" =>[
"counterparty_id" => "5138z40d1-05bb-49c0-b130-75e8cf2f7693",
"account_id" => "db7c73d3-b0df-4e0e-8a9a-f42aa99f52ab"
],
"amount" => 123.11,
"currency" => "EUR",
]);
$payment = Revolut::payment()->build()
->account('bdab1c20-8d8c-430d-b967-87ac01af060c')
->receiver('5138z40d1-05bb-49c0-b130-75e8cf2f7693')
->amount(93.12)
->currency('USD')
->create();
Revolut::payment()->schedule($data, '2020-05-19');
Revolut::payment()->cancel('b63f30f0-62dc-4b6b-98cf-2a9a2e5ac981');
$transactions = Revolut::transaction()->all();
$filtered = Revolut::transaction()->all([
'count' => 200,
'type' => 'card_payment',
]);
Revolut::transaction()->all([], true);
Revolut::transaction()->get($id);
Revolut::transaction()->getByRequestId($requestId);
Revolut::paymentDraft()->all();
Revolut::paymentDraft()->get($id);
Revolut::paymentDraft()->delete($id);
Revolut::paymentDraft()->create([
"title": "Sample title",
"schedule_for": '2020-05-29',
"payments" => [
[
"currency" => "EUR",
"amount" => 123,
"account_id" => "db7c73d3-b0df-4e0e-8a9a-f42aa99f52ab",
"receiver" => [
"counterparty_id" => "5138z40d1-05bb-49c0-b130-75e8cf2f7693",
"account_id" => "bdab1c20-8d8c-430d-b967-87ac01af060c"
],
]
]
]);
$date = now()->addDays(7)->format('Y-m-d');
$draft = Revolut::paymentDraft()->build()
->title('Sample title')
->schedule($date)
->payments($payments);
foreach ($employees as $employee) {
$draft->addPayment($payment);
}
$draft->create()
Revolut::rate()->get('EUR', 'CHF');
Revolut::rate()->get('USD', 'GBP', 143.23);
Revolut::exchange()->create([
"from" => [
"account_id" => "d56dd396-523b-4613-8cc7-54974c17bcac",
"currency" => "USD",
"amount" => 135.25
],
"to": [
"account_id" => "a44dd365-523b-4613-8457-54974c8cc7ac",
"currency" => "EUR"
],
"reference" => "Time to sell",
"request_id" => Revolut::generateRequestId(),
]);
$exchange = Revolut::exchange()->build()
->reference('Time to sell')
->from('d56dd396-523b-4613-8cc7-54974c17bcac', 'USD', 135.25)
->to('a44dd365-523b-4613-8457-54974c8cc7ac', 'EUR');
$response = $exchange->create()
Revolut::webhook()->create('https://mydomain.com/endpoint');
Revolut::webhook()->delete();
Revolut::counterparty()->build() // tbclla\Revolut\Builders\CounterpartyBuilder
Revolut::payment()->build() // tbclla\Revolut\Builders\PaymentBuilder
Revolut::paymentDraft()->build() // tbclla\Revolut\Builders\PaymentDraftBuilder
Revolut::transfer()->build() // tbclla\Revolut\Builders\TransferBuilder
Revolut::exchange()->build() // tbclla\Revolut\Builders\ExchangeBuilder
Revolut::exchange()->build()
->from('d56dd396-523b-4613-8cc7-54974c17bcac', 'USD')
->to('a44dd365-523b-4613-8457-54974c8cc7ac', 'EUR', 735.23)
->reference('Off to France!')
->toArray();
Revolut::transfer()->build()
->sourceAccount('bdab1c20-8d8c-430d-b967-87ac01af060c')
->targetAccout('5138z40d1-05bb-49c0-b130-75e8cf2f7693')
->amount(231.20)
->create();
$builder = Revolut::exchange()->build()->requestId('my_own_request_id');
$requestId = $builder->request_id;
use tbclla\Revolut\Client;
Client::generateRequestId();
$url = route('revolut-authorize');
$url = route('revolut-authorize', [
'after_success' => route('home')
]);
return redirect($url);
use tbclla\Revolut\Exceptions\AppUnauthorizedException;
Route::get('/accounts', function () {
try {
return Revolut::account()->all();
} catch(AppUnauthorizedException $e) {
return redirect(route('revolut-authorization', [
'after_success' => '/accounts'
]));
}
});
// remove access token
Cache::forget('revolut_access_token');
// remove refresh token
Cache::forget('revolut_refresh_token');
$schedule->command('revolut:cleanup')->daily();
php artisan vendor:publish --provider "tbclla\Revolut\Providers\RevolutServiceProvider"
php artisan revolut:jwt
php artisan revolut:jwt --public /Path/to/publickey.cer
php artisan revolut:authorize
php artisan revolut:access-token
php artisan revolut:authorize
php artisan revolut:cleanup