cURL
curl -X GET 'https://api.telegent.com/v1.0/account/packages' \
-H 'Authorization: Bearer YOUR_TOKEN'import requests
url = "https://api.telegent.com/v1.0/account/packages"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.telegent.com/v1.0/account/packages', 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.telegent.com/v1.0/account/packages",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://api.telegent.com/v1.0/account/packages"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.telegent.com/v1.0/account/packages")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.telegent.com/v1.0/account/packages")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"DistributorId": "DID-1e24785ab-3f3c-7db1-89d7-956d80fdnn2",
"TotalPackages": 3,
"Filter": "Active",
"Results": [
{
"PackageId": "PID-203740d8-6b19-42c6-b22e-e45611d9cade",
"PackageName": "eSim 3",
"DistributorId": "DID-1e24785ab-3f3c-7db1-89d7-956d80fdnn2",
"AggregatorId": "AGID-A49349FB-170E-44BF-B61E-DCC65A3FEA1A",
"SubscriberId": "456789",
"Type": "Type 2",
"Price": 34.56,
"Monthly": false,
"Active": true
},
{
"PackageId": "PID-9a8435dc-ca6e-4a98-b761-5e6dc04447db",
"PackageName": "eSim 3",
"DistributorId": "DID-1e24785ab-3f3c-7db1-89d7-956d80fdnn2",
"AggregatorId": "AGID-A49349FB-170E-44BF-B61E-DCC65A3FEA1A",
"SubscriberId": "12345",
"Type": "Type 1",
"Price": 12.34,
"Monthly": true,
"Active": true
}
]
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}Accounts
Get Packages
Retrieve a list of all packages available in your account. Use the optional Filter parameter to filter by package status (e.g., Active, Inactive).
What this does: Returns a list of packages available on the account with their IDs, names, and pricing. Use this to look up a PID- before creating a subscription.
Next steps:
- Get package details —
GET /v1.0/packages - Create a subscription —
POST /v1.0/subscriptions
GET
/
v1.0
/
account
/
packages
cURL
curl -X GET 'https://api.telegent.com/v1.0/account/packages' \
-H 'Authorization: Bearer YOUR_TOKEN'import requests
url = "https://api.telegent.com/v1.0/account/packages"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.telegent.com/v1.0/account/packages', 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.telegent.com/v1.0/account/packages",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://api.telegent.com/v1.0/account/packages"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.telegent.com/v1.0/account/packages")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.telegent.com/v1.0/account/packages")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"DistributorId": "DID-1e24785ab-3f3c-7db1-89d7-956d80fdnn2",
"TotalPackages": 3,
"Filter": "Active",
"Results": [
{
"PackageId": "PID-203740d8-6b19-42c6-b22e-e45611d9cade",
"PackageName": "eSim 3",
"DistributorId": "DID-1e24785ab-3f3c-7db1-89d7-956d80fdnn2",
"AggregatorId": "AGID-A49349FB-170E-44BF-B61E-DCC65A3FEA1A",
"SubscriberId": "456789",
"Type": "Type 2",
"Price": 34.56,
"Monthly": false,
"Active": true
},
{
"PackageId": "PID-9a8435dc-ca6e-4a98-b761-5e6dc04447db",
"PackageName": "eSim 3",
"DistributorId": "DID-1e24785ab-3f3c-7db1-89d7-956d80fdnn2",
"AggregatorId": "AGID-A49349FB-170E-44BF-B61E-DCC65A3FEA1A",
"SubscriberId": "12345",
"Type": "Type 1",
"Price": 12.34,
"Monthly": true,
"Active": true
}
]
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}{
"StatusCode": 123,
"Message": "<string>"
}Query Parameters
Filter by status (e.g., Active, Inactive, All)
Response
Get Packages List
The response is of type object.
⌘I