Get plan entitlement quotas by plan ID and optional entitlement code
curl --request GET \
--url https://dev-entitlements-api.iqraa.ai/api/v1/api/v1/plan-entitlement-quota/plan/{planId}/entitlement/{entitlementCode} \
--header 'x-admin-api-key: <x-admin-api-key>'import requests
url = "https://dev-entitlements-api.iqraa.ai/api/v1/api/v1/plan-entitlement-quota/plan/{planId}/entitlement/{entitlementCode}"
headers = {"x-admin-api-key": "<x-admin-api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-admin-api-key': '<x-admin-api-key>'}};
fetch('https://dev-entitlements-api.iqraa.ai/api/v1/api/v1/plan-entitlement-quota/plan/{planId}/entitlement/{entitlementCode}', 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://dev-entitlements-api.iqraa.ai/api/v1/api/v1/plan-entitlement-quota/plan/{planId}/entitlement/{entitlementCode}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-admin-api-key: <x-admin-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://dev-entitlements-api.iqraa.ai/api/v1/api/v1/plan-entitlement-quota/plan/{planId}/entitlement/{entitlementCode}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-admin-api-key", "<x-admin-api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://dev-entitlements-api.iqraa.ai/api/v1/api/v1/plan-entitlement-quota/plan/{planId}/entitlement/{entitlementCode}")
.header("x-admin-api-key", "<x-admin-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://dev-entitlements-api.iqraa.ai/api/v1/api/v1/plan-entitlement-quota/plan/{planId}/entitlement/{entitlementCode}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-admin-api-key"] = '<x-admin-api-key>'
response = http.request(request)
puts response.read_body[
{}
]Plan Entitlement Quotas
Get plan entitlement quotas by plan ID and optional entitlement code
Retrieves quotas for a specific plan, optionally filtered by entitlement code
GET
/
api
/
v1
/
plan-entitlement-quota
/
plan
/
{planId}
/
entitlement
/
{entitlementCode}
Get plan entitlement quotas by plan ID and optional entitlement code
curl --request GET \
--url https://dev-entitlements-api.iqraa.ai/api/v1/api/v1/plan-entitlement-quota/plan/{planId}/entitlement/{entitlementCode} \
--header 'x-admin-api-key: <x-admin-api-key>'import requests
url = "https://dev-entitlements-api.iqraa.ai/api/v1/api/v1/plan-entitlement-quota/plan/{planId}/entitlement/{entitlementCode}"
headers = {"x-admin-api-key": "<x-admin-api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-admin-api-key': '<x-admin-api-key>'}};
fetch('https://dev-entitlements-api.iqraa.ai/api/v1/api/v1/plan-entitlement-quota/plan/{planId}/entitlement/{entitlementCode}', 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://dev-entitlements-api.iqraa.ai/api/v1/api/v1/plan-entitlement-quota/plan/{planId}/entitlement/{entitlementCode}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-admin-api-key: <x-admin-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://dev-entitlements-api.iqraa.ai/api/v1/api/v1/plan-entitlement-quota/plan/{planId}/entitlement/{entitlementCode}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-admin-api-key", "<x-admin-api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://dev-entitlements-api.iqraa.ai/api/v1/api/v1/plan-entitlement-quota/plan/{planId}/entitlement/{entitlementCode}")
.header("x-admin-api-key", "<x-admin-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://dev-entitlements-api.iqraa.ai/api/v1/api/v1/plan-entitlement-quota/plan/{planId}/entitlement/{entitlementCode}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-admin-api-key"] = '<x-admin-api-key>'
response = http.request(request)
puts response.read_body[
{}
]⌘I