/{payment-id}
/dispute
ใช้เพื่อระงับข้อโต้แย้งเกี่ยวกับการชำระเงินทั้งหมด
คุณไม่สามารถอ่านจุดเชื่อมโยงนี้ได้ ให้ใช้ช่อง disputes
บนอ็อบเจ็กต์การชำระเงินหลัก
คุณสามารถใช้จุดเชื่อมโยงนี้เพื่อระงับข้อโต้แย้งได้
POST /v21.0/{payment-id}/dispute HTTP/1.1
Host: graph.facebook.com
reason=DENIED_REFUND
/* PHP SDK v5.0.0 */
/* make the API call */
try {
// Returns a `Facebook\FacebookResponse` object
$response = $fb->post(
'/{payment-id}/dispute',
array (
'reason' => 'DENIED_REFUND',
),
'{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("reason", "DENIED_REFUND");
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{payment-id}/dispute",
params,
HttpMethod.POST,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
NSDictionary *params = @{
@"reason": @"DENIED_REFUND",
};
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"/{payment-id}/dispute"
parameters:params
HTTPMethod:@"POST"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
ชื่อ | คำอธิบาย | ประเภท |
---|---|---|
| สาเหตุที่คุณระงับข้อโต้แย้งนี้ คุณต้องระบุข้อมูลนี้ |
|
หากสำเร็จ การแสดงผลจะเป็นดังนี้
{ "success": true }
หากไม่เป็นเช่นนั้น ระบบจะส่งคืนข้อความแสดงข้อผิดพลาดที่เกี่ยวข้อง
คุณไม่สามารถลบโดยใช้จุดเชื่อมโยงนี้ได้