Search SAT product and service keys
curl --request GET \
--url https://api.example.test/api/v1/sat/key_of_products_and_servicesimport requests
url = "https://api.example.test/api/v1/sat/key_of_products_and_services"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.test/api/v1/sat/key_of_products_and_services', 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.example.test/api/v1/sat/key_of_products_and_services",
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.example.test/api/v1/sat/key_of_products_and_services"
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.example.test/api/v1/sat/key_of_products_and_services")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.test/api/v1/sat/key_of_products_and_services")
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{
"key_of_products_and_services": [
{
"id": 9501,
"key": "86121600",
"description": "Servicios hospitalarios de emergencia",
"active": true,
"created_at": "2022-03-01T20:46:11.467-06:00",
"updated_at": "2022-03-01T20:46:11.467-06:00"
}
]
}SAT catalogs
Search SAT product and service keys
Returns product and service keys in ascending ID order, including timestamps in the America/Monterrey time zone.
GET
/
api
/
v1
/
sat
/
key_of_products_and_services
Search SAT product and service keys
curl --request GET \
--url https://api.example.test/api/v1/sat/key_of_products_and_servicesimport requests
url = "https://api.example.test/api/v1/sat/key_of_products_and_services"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.test/api/v1/sat/key_of_products_and_services', 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.example.test/api/v1/sat/key_of_products_and_services",
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.example.test/api/v1/sat/key_of_products_and_services"
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.example.test/api/v1/sat/key_of_products_and_services")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.test/api/v1/sat/key_of_products_and_services")
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{
"key_of_products_and_services": [
{
"id": 9501,
"key": "86121600",
"description": "Servicios hospitalarios de emergencia",
"active": true,
"created_at": "2022-03-01T20:46:11.467-06:00",
"updated_at": "2022-03-01T20:46:11.467-06:00"
}
]
}Query Parameters
Literal, case-insensitive substring matched against the key or unaccented description. SQL wildcard characters such as % and _ are treated literally. Omitted or blank input uses hospital.
Response
200 - application/json
SAT product and service keys wrapped in the key_of_products_and_services root.
Show child attributes
Show child attributes
⌘I