2 DELETE /order/{orderid}
Thomas Brinkmann edited this page 2 years ago

DELETE /order/{orderid}

Inhalt


  • Parameter
  • Optionale Parameter
  • Beispiel Anfrage
  • Beispiel Antwort
  • Mögliche Fehlermeldungen

Parameter

URL Parameter Typ Beschreibung
orderid integer Die ID der Bestellung die man stornieren möchte
Body Parameter Typ Beschreibung
- - -

Optionale Parameter

Query-String Parameter Typ Beschreibung
- - -

Beispiel Anfrage

PHP
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://api.dsh.gg/api/v2/order/1',
  CURLOPT_CUSTOMREQUEST => 'DELETE',
  CURLOPT_HTTPHEADER => array(
    'X-TOKEN: test-token',
    'Content-Type: application/json'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
cURL
curl --location --request DELETE 'https://api.dsh.gg/api/v2/order/1' \
--header 'X-TOKEN: test-token' \
--header 'Content-Type: application/json'

Beispiel Antwort

{
    "status": "OK",
}

Mögliche Fehlermeldungen

Status Code 403 - Permission denied

Status Code 400 - The Order is already paid and cannot be cancelled by the api anymore.

Status Code 404 - No order with ID {orderId} found!

Status Code 500 - Order could not be cancelled