/{payment-id}
/refunds
Digunakan untuk mengeluarkan pengembalian dana pembayaran.
Anda tidak dapat membaca edge ini.
Anda dapat menggunakan edge ini untuk memulai pengembalian dana:
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
}];
Nama | Deskripsi | Jenis |
---|---|---|
| Kode ISO tiga huruf dari mata uang yang digunakan untuk menentukan jumlah pengembalian dana; kode ini harus sama dengan mata uang yang digunakan untuk pembelian awal. Ini wajib. |
|
| Jumlah pengembalian dana. Ini wajib. Nilai tersebut harus kurang dari atau sama dengan kolom |
|
| Alasan Anda mengembalikan dana pesanan ini. |
|
Jika berhasil:
{ "success": true }
Jika tidak, pesan kesalahan yang relevan akan ditampilkan.
Anda tidak dapat menghapus dengan edge ini.