/{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 }
실패한 경우 관련 오류 메시지가 반환됩니다.
이 에지를 사용하여 삭제할 수 없습니다.