Versione API Graph

/{payment-id}/refunds

Usato per emettere eventuali rimborsi di pagamento.

Lettura

Non puoi leggere questo segmento.

Pubblicazione

Puoi usare questo segmento per avviare i rimborsi:

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
}];

Autorizzazioni

  • Per emettere eventuali rimborsi relativi all'app, è necessario un token d'accesso dell'app.

Campi

Nome Descrizione Tipo

currency

Il codice ISO di tre lettere della valuta in cui è specificato l'importo del rimborso; deve essere uguale alla valuta in cui è stato denominato l'acquisto originario. Obbligatorio.

string

amount

L'importo da rimborsare. Obbligatorio. Deve essere inferiore o uguale al campo refundable_amount sull'oggetto Payment principale.

string

reason

Il motivo per cui stai rimborsando questo ordine.

enum{MALICIOUS_FRAUD, FRIENDLY_FRAUD, CUSTOMER_SERVICE}

Risposta

Se l'operazione va a buon fine:

{
  "success": true
}

In caso contrario viene restituito un messaggio di errore pertinente.

Eliminazione

Non puoi eliminare usando questo segmento.