Skip to main content
POST
/
v1
/
accounts
/
update-subscription
Update Subscription Plan
curl --request POST \
  --url https://api.iklim.co/v1/accounts/update-subscription \
  --header 'Content-Type: application/json' \
  --data '
{
  "accountId": "296ff917-9b4b-4dc1-987d-2c17bdac7133",
  "userId": "296ff917-9b4b-4dc1-987d-2c17bdac7133",
  "subscriptionPlan": "NONE/TRIAL/BASIC_MONTHLY/BASIC_YEARLY/PREMIUM_MONTHLY/PREMIUM_YEARLY/CUSTOM"
}
'
import requests

url = "https://api.iklim.co/v1/accounts/update-subscription"

payload = {
"accountId": "296ff917-9b4b-4dc1-987d-2c17bdac7133",
"userId": "296ff917-9b4b-4dc1-987d-2c17bdac7133",
"subscriptionPlan": "NONE/TRIAL/BASIC_MONTHLY/BASIC_YEARLY/PREMIUM_MONTHLY/PREMIUM_YEARLY/CUSTOM"
}
headers = {"Content-Type": "application/json"}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
accountId: '296ff917-9b4b-4dc1-987d-2c17bdac7133',
userId: '296ff917-9b4b-4dc1-987d-2c17bdac7133',
subscriptionPlan: 'NONE/TRIAL/BASIC_MONTHLY/BASIC_YEARLY/PREMIUM_MONTHLY/PREMIUM_YEARLY/CUSTOM'
})
};

fetch('https://api.iklim.co/v1/accounts/update-subscription', 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://api.iklim.co/v1/accounts/update-subscription",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'accountId' => '296ff917-9b4b-4dc1-987d-2c17bdac7133',
'userId' => '296ff917-9b4b-4dc1-987d-2c17bdac7133',
'subscriptionPlan' => 'NONE/TRIAL/BASIC_MONTHLY/BASIC_YEARLY/PREMIUM_MONTHLY/PREMIUM_YEARLY/CUSTOM'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"strings"
"net/http"
"io"
)

func main() {

url := "https://api.iklim.co/v1/accounts/update-subscription"

payload := strings.NewReader("{\n \"accountId\": \"296ff917-9b4b-4dc1-987d-2c17bdac7133\",\n \"userId\": \"296ff917-9b4b-4dc1-987d-2c17bdac7133\",\n \"subscriptionPlan\": \"NONE/TRIAL/BASIC_MONTHLY/BASIC_YEARLY/PREMIUM_MONTHLY/PREMIUM_YEARLY/CUSTOM\"\n}")

req, _ := http.NewRequest("POST", url, payload)

req.Header.Add("Content-Type", "application/json")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://api.iklim.co/v1/accounts/update-subscription")
.header("Content-Type", "application/json")
.body("{\n \"accountId\": \"296ff917-9b4b-4dc1-987d-2c17bdac7133\",\n \"userId\": \"296ff917-9b4b-4dc1-987d-2c17bdac7133\",\n \"subscriptionPlan\": \"NONE/TRIAL/BASIC_MONTHLY/BASIC_YEARLY/PREMIUM_MONTHLY/PREMIUM_YEARLY/CUSTOM\"\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.iklim.co/v1/accounts/update-subscription")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"accountId\": \"296ff917-9b4b-4dc1-987d-2c17bdac7133\",\n \"userId\": \"296ff917-9b4b-4dc1-987d-2c17bdac7133\",\n \"subscriptionPlan\": \"NONE/TRIAL/BASIC_MONTHLY/BASIC_YEARLY/PREMIUM_MONTHLY/PREMIUM_YEARLY/CUSTOM\"\n}"

response = http.request(request)
puts response.read_body
{
  "userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "accountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "subscriptionExpirationEpoch": 123,
  "warnings": [
    "<string>"
  ]
}

Body

application/json
accountId
string<uuid>
required

Account Identifier whose Subscription will be Updated

Example:

"296ff917-9b4b-4dc1-987d-2c17bdac7133"

userId
string<uuid>
required

User Identifier whose Subscription will be Updated

Example:

"296ff917-9b4b-4dc1-987d-2c17bdac7133"

subscriptionPlan
enum<string>
required

New Subscription Plan

Available options:
NONE,
TRIAL,
BASIC_MONTHLY,
BASIC_YEARLY,
PREMIUM_MONTHLY,
PREMIUM_YEARLY,
CUSTOM
Example:

"NONE/TRIAL/BASIC_MONTHLY/BASIC_YEARLY/PREMIUM_MONTHLY/PREMIUM_YEARLY/CUSTOM"

planDetails
object

Response

Subscription Plan Successfully Updated

userId
string<uuid>
accountId
string<uuid>
subscriptionPlan
enum<string>
Available options:
NONE,
TRIAL,
BASIC_MONTHLY,
BASIC_YEARLY,
PREMIUM_MONTHLY,
PREMIUM_YEARLY,
CUSTOM
subscriptionExpirationEpoch
integer<int64>
warnings
string[]