From 0474990df25842a228e69a3b5e1cc6115e13bea5 Mon Sep 17 00:00:00 2001 From: Thomas Brinkmann Date: Mon, 6 Jun 2022 11:52:42 +0200 Subject: [PATCH] =?UTF-8?q?=E2=80=9EPOST=20/service/{serviceid}/reset?= =?UTF-8?q?=E2=80=9C=20=C3=A4ndern?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- POST-%2Fservice%2F%7Bserviceid%7D%2Freset.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/POST-%2Fservice%2F%7Bserviceid%7D%2Freset.md b/POST-%2Fservice%2F%7Bserviceid%7D%2Freset.md index 27147f4..f83ac00 100644 --- a/POST-%2Fservice%2F%7Bserviceid%7D%2Freset.md +++ b/POST-%2Fservice%2F%7Bserviceid%7D%2Freset.md @@ -41,7 +41,7 @@ $curl = curl_init(); curl_setopt_array($curl, array( - CURLOPT_URL => 'control.local/api/v2/service/12345/reset', + CURLOPT_URL => 'https://api.dsh.gg/api/v2/service/12345/reset', CURLOPT_CUSTOMREQUEST => 'POST', CURLOPT_HTTPHEADER => array( 'X-TOKEN: test-token', @@ -57,7 +57,7 @@ echo $response; ##### cURL ```bash -curl --location --request POST 'control.local/api/v2/service/12345/reset' \ +curl --location --request POST 'https://api.dsh.gg/api/v2/service/12345/reset' \ --header 'X-TOKEN: test-token' \ --header 'Content-Type: application/json' ```