Müşteri API v1 (kullanımdan kaldırıldı)
Lisans Anahtarını Sıfırla
Resets the license key associated with the given license, if allowed.
POST
/
customer
/
v1
/
licenses
/
{license}
/
reset
Reset License Key (v1)
curl --request POST \
--url https://orbitflare.com/api/customer/v1/licenses/{license}/reset \
--header 'X-ORBIT-KEY: <api-key>'import requests
url = "https://orbitflare.com/api/customer/v1/licenses/{license}/reset"
headers = {"X-ORBIT-KEY": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'X-ORBIT-KEY': '<api-key>'}};
fetch('https://orbitflare.com/api/customer/v1/licenses/{license}/reset', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://orbitflare.com/api/customer/v1/licenses/{license}/reset",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => [
"X-ORBIT-KEY: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://orbitflare.com/api/customer/v1/licenses/{license}/reset"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("X-ORBIT-KEY", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://orbitflare.com/api/customer/v1/licenses/{license}/reset")
.header("X-ORBIT-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://orbitflare.com/api/customer/v1/licenses/{license}/reset")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-ORBIT-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"error": false,
"message": "<string>"
}Kullanımdan Kaldırıldı. Bu uç nokta Müşteri API v1’in bir parçasıdır. Bunun yerine Müşteri API v2 kullanın.
Bu sayfa yararlı mıydı?
Önceki
IP'yi Beyaz Listeye EkleAdd an IP address to the whitelist for a given license and location.
Sonraki
⌘I
Reset License Key (v1)
curl --request POST \
--url https://orbitflare.com/api/customer/v1/licenses/{license}/reset \
--header 'X-ORBIT-KEY: <api-key>'import requests
url = "https://orbitflare.com/api/customer/v1/licenses/{license}/reset"
headers = {"X-ORBIT-KEY": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'X-ORBIT-KEY': '<api-key>'}};
fetch('https://orbitflare.com/api/customer/v1/licenses/{license}/reset', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://orbitflare.com/api/customer/v1/licenses/{license}/reset",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => [
"X-ORBIT-KEY: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://orbitflare.com/api/customer/v1/licenses/{license}/reset"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("X-ORBIT-KEY", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://orbitflare.com/api/customer/v1/licenses/{license}/reset")
.header("X-ORBIT-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://orbitflare.com/api/customer/v1/licenses/{license}/reset")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-ORBIT-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"error": false,
"message": "<string>"
}