TsPanel API v3
  • Introduction
  • 1. TsPanel API v3
    • 1.1 Ts3 Oluştur
    • 1.2 Ts3 Sil
    • 1.3 Ts3 Başlat
    • 1.4 Ts3 Durdur
    • 1.5 Port Kontrolü
    • 1.6 Süre Uzatma
Powered by GitBook
On this page
  • Zorunlu Parametreler
  • cURL (Örnek)
  • Cevap (Örnek)

Was this helpful?

  1. 1. TsPanel API v3

1.4 Ts3 Durdur

 POST  /apiv2/stopTs3

Zorunlu Parametreler

Ad

Tür

Açıklama

tsPanelBayiiIp

string

Bayi ip adresi

tsPanelUserName

string

TsPanel Kullanıcı Adı

tsPanelApiKey

string

TsPanel Api Key

tsPanelPort

int

Durdurulacak Ts3 portu

cURL (Örnek)

curl --request POST \
  --url http://tspanel.net/apiv2/stopTs3 \
  --header 'cache-control: no-cache' \
  --header 'content-type: multipart/form-data;' \
  --form tsPanelBayiIp=bayi_ip\
  --form tsPanelUserName=tspanel_username \
  --form tsPanelApiKey=tspanel_apikey \
  --form tsPanelPort=222 \

Cevap (Örnek)

{
  "success": true,
  "errors": [],
  "data": true
}
Previous1.3 Ts3 BaşlatNext1.5 Port Kontrolü

Last updated 5 years ago

Was this helpful?