/{payment-id}
/refunds
يتم الاستخدام لإصدار أي عمليات لاسترداد أموال الدفع.
يتعذر عليك قراءة عنصر الربط هذا.
يمكنك استخدام عنصر الربط هذا لبدء عمليات استرداد الأموال:
POST /v21.0/{payment-id}/refunds HTTP/1.1
Host: graph.facebook.com
currency=EUR&amount=1.00
/* PHP SDK v5.0.0 */
/* make the API call */
try {
// Returns a `Facebook\FacebookResponse` object
$response = $fb->post(
'/{payment-id}/refunds',
array (
'currency' => 'EUR',
'amount' => '1.00',
),
'{access-token}'
);
} catch(Facebook\Exceptions\FacebookResponseException $e) {
echo 'Graph returned an error: ' . $e->getMessage();
exit;
} catch(Facebook\Exceptions\FacebookSDKException $e) {
echo 'Facebook SDK returned an error: ' . $e->getMessage();
exit;
}
$graphNode = $response->getGraphNode();
/* handle the result */
Bundle params = new Bundle();
params.putString("currency", "EUR");
params.putString("amount", "1.00");
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{payment-id}/refunds",
params,
HttpMethod.POST,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
NSDictionary *params = @{
@"currency": @"EUR",
@"amount": @"1.00",
};
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"/{payment-id}/refunds"
parameters:params
HTTPMethod:@"POST"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
الاسم | الوصف | النوع |
---|---|---|
| رمز العملة لمعيار ISO المكوّن من ثلاثة أحرف الذي يتم تحديد مبلغ استرداد الأموال من خلاله؛ يجب أن يكون مثل العملة التي تم إجراء عملية الدفع الأصلية بها. هذا مطلوب. |
|
| المبلغ المطلوب استرداده. هذا مطلوب. يجب أن يكون أقل من الحقل |
|
| سبب استرداد الأموال لهذا الطلب. |
|
إذا كانت ناجحة:
{ "success": true }
بخلاف ذلك، ستظهر رسالة الخطأ ذات الصلة.
لا يمكنك الحذف باستخدام عنصر الربط هذا.