From 5ab303ed3a8ea5399b4af62db90bfaad47c77f2e Mon Sep 17 00:00:00 2001 From: Thomas Brinkmann Date: Mon, 6 Jun 2022 11:55:32 +0200 Subject: [PATCH] =?UTF-8?q?=E2=80=9EDELETE=20/order/{orderid}=E2=80=9C=20?= =?UTF-8?q?=C3=A4ndern?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DELETE-%2Forder%2F%7Borderid%7D.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DELETE-%2Forder%2F%7Borderid%7D.md b/DELETE-%2Forder%2F%7Borderid%7D.md index 6777218..941ee6c 100644 --- a/DELETE-%2Forder%2F%7Borderid%7D.md +++ b/DELETE-%2Forder%2F%7Borderid%7D.md @@ -41,7 +41,7 @@ $curl = curl_init(); curl_setopt_array($curl, array( - CURLOPT_URL => 'control.local/api/v2/order/1', + CURLOPT_URL => 'https://api.dsh.gg/api/v2/order/1', CURLOPT_CUSTOMREQUEST => 'DELETE', CURLOPT_HTTPHEADER => array( 'X-TOKEN: test-token', @@ -57,7 +57,7 @@ echo $response; ##### cURL ```bash -curl --location --request DELETE 'control.local/api/v2/order/1' \ +curl --location --request DELETE 'https://api.dsh.gg/api/v2/order/1' \ --header 'X-TOKEN: test-token' \ --header 'Content-Type: application/json' ```