diff --git a/POST-%2Fservice%2F%7Bserviceid%7D%2Fstart.md b/POST-%2Fservice%2F%7Bserviceid%7D%2Fstart.md index 79018a6..b9de9c2 100644 --- a/POST-%2Fservice%2F%7Bserviceid%7D%2Fstart.md +++ b/POST-%2Fservice%2F%7Bserviceid%7D%2Fstart.md @@ -41,7 +41,7 @@ $curl = curl_init(); curl_setopt_array($curl, array( - CURLOPT_URL => 'control.local/api/v2/service/12345/start', + CURLOPT_URL => 'https://api.dsh.gg/api/v2/service/12345/start', 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/start' \ +curl --location --request POST 'https://api.dsh.gg/api/v2/service/12345/start' \ --header 'X-TOKEN: test-token' \ --header 'Content-Type: application/json' ```