يبدأ معاملة دفع جديدة.
{{base_url}}
/payment/create
المعلمة | يكتب | تفاصيل |
---|---|---|
amount | decimal | المبلغ الخاص بك، يجب تقريبه بدقة 2. |
currency | string | رمز العملة، يجب أن يكون بالأحرف الكبيرة (رمز Alpha-3) |
return_url: | string | أدخل عنوان URL الخاص بالإرجاع أو النجاح |
cancel_url: | string (optional) | أدخل عنوان URL الخاص بالإلغاء أو الفشل |
custom: | string (optional) | معرف المعاملة الذي يمكن استخدام معاملة مشروعك |
Request Example (guzzle)
<?php
require_once('vendor/autoload.php');
$client = new \GuzzleHttp\Client();
$response = $client->request('POST', '{{base_url}}/payment/create', [
'json' => [
'amount' => '100.00',
'currency' => 'USD',
'return_url' => 'www.example.com/success',
'cancel_url' => 'www.example.com/cancel',
'custom' => '123456789ABCD',
],
'headers' => [
'Authorization' => 'Bearer {{access_token}}',
'accept' => 'application/json',
'content-type' => 'application/json',
],
]);
echo $response->getBody();
**Response: SUCCESS (200 OK)**
{
"message": {
"code": 200,
"success": [
"CREATED"
]
},
"data": {
"token": "2zMRmT3KeYT2BWMAyGhqEfuw4tOYOfGXKeyKqehZ8mF1E35hMwE69gPpyo3e",
"payment_url": "www.example.com/pay/sandbox/v1/user/authentication/form/2zMRmT3KeYT2BWMAyGhqEfuw4tOYOfGXKeyKqehZ8mF1E35hMwE69gPpyo3e",
},
"type": "success"
}
**Response: ERROR (403 FAILED)**
{
"message": {
"code": 403,
"error": [
"Requested with invalid token!"
]
},
"data": [],
"type": "error"
}