List My Buyers
curl --request POST \
--url https://apiv2.telecomsxchange.com/sellers/buyers/listimport requests
url = "https://apiv2.telecomsxchange.com/sellers/buyers/list"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://apiv2.telecomsxchange.com/sellers/buyers/list', 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://apiv2.telecomsxchange.com/sellers/buyers/list",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
]);
$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://apiv2.telecomsxchange.com/sellers/buyers/list"
req, _ := http.NewRequest("POST", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://apiv2.telecomsxchange.com/sellers/buyers/list")
.asString();require 'uri'
require 'net/http'
url = URI("https://apiv2.telecomsxchange.com/sellers/buyers/list")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
response = http.request(request)
puts response.read_bodySellers
List My Buyers
This API allows you to list your subscribed buyers on TCXC. you may find out what services they have purchased from your and you can send them a message.
POST
/
sellers
/
buyers
/
list
List My Buyers
curl --request POST \
--url https://apiv2.telecomsxchange.com/sellers/buyers/listimport requests
url = "https://apiv2.telecomsxchange.com/sellers/buyers/list"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://apiv2.telecomsxchange.com/sellers/buyers/list', 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://apiv2.telecomsxchange.com/sellers/buyers/list",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
]);
$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://apiv2.telecomsxchange.com/sellers/buyers/list"
req, _ := http.NewRequest("POST", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://apiv2.telecomsxchange.com/sellers/buyers/list")
.asString();require 'uri'
require 'net/http'
url = URI("https://apiv2.telecomsxchange.com/sellers/buyers/list")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
response = http.request(request)
puts response.read_body⌘I