Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Intégration Laravel optionnelle.
.env
ORCHESTRATE_SECRET_KEY=sk_live_xxx
php artisan vendor:publish --tag=orchestrate-config
return [ 'secret_key' => env('ORCHESTRATE_SECRET_KEY'), 'base_uri' => env('ORCHESTRATE_BASE_URI', 'https://api.orqex.com/v1'), 'timeout' => (float) env('ORCHESTRATE_TIMEOUT', 30), 'connect_timeout' => (float) env('ORCHESTRATE_CONNECT_TIMEOUT', 10), 'max_retries' => (int) env('ORCHESTRATE_MAX_RETRIES', 2), ];
use Orqex\Orchestrate\OrchestrateClient; use Orqex\Orchestrate\Laravel\Facades\Orchestrate; // Depuis le conteneur app(OrchestrateClient::class)->paymentIntents()->all(); // Via la façade Orchestrate::paymentIntents()->create([ 'amount' => 50, 'currency' => 'XOF', 'description' => 'Commande #1024', 'customer' => ['email' => '[email protected]', 'first_name' => 'Ama', 'last_name' => 'Mensah'], ]);
Cette page vous a-t-elle été utile ?