Revoke a plan subscription
curl --request PUT \
--url https://b.anny.co/api/v1/plan-subscriptions/{plan_subscription_id}/revokeimport requests
url = "https://b.anny.co/api/v1/plan-subscriptions/{plan_subscription_id}/revoke"
response = requests.put(url)
print(response.text)const options = {method: 'PUT'};
fetch('https://b.anny.co/api/v1/plan-subscriptions/{plan_subscription_id}/revoke', 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://b.anny.co/api/v1/plan-subscriptions/{plan_subscription_id}/revoke",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
]);
$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://b.anny.co/api/v1/plan-subscriptions/{plan_subscription_id}/revoke"
req, _ := http.NewRequest("PUT", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://b.anny.co/api/v1/plan-subscriptions/{plan_subscription_id}/revoke")
.asString();require 'uri'
require 'net/http'
url = URI("https://b.anny.co/api/v1/plan-subscriptions/{plan_subscription_id}/revoke")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
response = http.request(request)
puts response.read_body{}Passes, Plans & Queue
Revoke a plan subscription
PUT
/
api
/
v1
/
plan-subscriptions
/
{plan_subscription_id}
/
revoke
Revoke a plan subscription
curl --request PUT \
--url https://b.anny.co/api/v1/plan-subscriptions/{plan_subscription_id}/revokeimport requests
url = "https://b.anny.co/api/v1/plan-subscriptions/{plan_subscription_id}/revoke"
response = requests.put(url)
print(response.text)const options = {method: 'PUT'};
fetch('https://b.anny.co/api/v1/plan-subscriptions/{plan_subscription_id}/revoke', 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://b.anny.co/api/v1/plan-subscriptions/{plan_subscription_id}/revoke",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
]);
$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://b.anny.co/api/v1/plan-subscriptions/{plan_subscription_id}/revoke"
req, _ := http.NewRequest("PUT", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://b.anny.co/api/v1/plan-subscriptions/{plan_subscription_id}/revoke")
.asString();require 'uri'
require 'net/http'
url = URI("https://b.anny.co/api/v1/plan-subscriptions/{plan_subscription_id}/revoke")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
response = http.request(request)
puts response.read_body{}Pfadparameter
Plan subscription UUID
Antwort
200 - application/vnd.api+json
Revoked subscription
The response is of type object.
⌘I