Listar operadores
curl --request GET \
--url https://api.tiendadepuntos.com/external/operators \
--header 'x-api-key: <api-key>'import requests
url = "https://api.tiendadepuntos.com/external/operators"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.tiendadepuntos.com/external/operators', 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.tiendadepuntos.com/external/operators",
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-api-key: <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://api.tiendadepuntos.com/external/operators"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<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://api.tiendadepuntos.com/external/operators")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tiendadepuntos.com/external/operators")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": 3312,
"role": "operator",
"firstName": "Ana",
"lastName": "Gómez",
"fullName": "Ana Gómez",
"email": "ana@micomercio.com",
"documentNumber": "40100800",
"phone": "+541164593678",
"birthday": "1990-01-01T00:00:00.000Z",
"hasCompletedOnboarding": false,
"branches": [
{
"branchId": 1972,
"branchName": "Sucursal Centro",
"permissionGroupId": 12,
"permissionGroupName": "Cajeros"
}
],
"createdAt": "2026-02-14T12:30:00.000Z",
"updatedAt": "2026-06-01T09:15:00.000Z"
}
],
"meta": {
"totalItems": 128,
"itemCount": 10,
"itemsPerPage": 10,
"totalPages": 13,
"currentPage": 1,
"from": 1,
"to": 10
},
"links": {
"first": "external/operators?page=1&limit=10",
"previous": null,
"next": "external/operators?page=2&limit=10",
"last": "external/operators?page=13&limit=10",
"path": "external/operators",
"firstPageUrl": "external/operators?page=1&limit=10",
"lastPageUrl": "external/operators?page=13&limit=10"
}
}{
"statusCode": 400,
"timestamp": "2026-07-31T14:05:12.431Z",
"path": "/external/tags/add",
"method": "POST",
"message": "Error de validación",
"errors": [
{}
],
"data": {}
}{
"statusCode": 404,
"timestamp": "2026-07-31T14:05:12.431Z",
"path": "/external/tags/add",
"method": "POST",
"message": "Api Key is required",
"errors": [
{}
],
"data": {}
}Operadores
Listar operadores
Devuelve los operadores del comercio, paginados. Por defecto vienen los administradores primero.
El query busca por nombre completo, email o documento.
Atención: este endpoint devuelve { data, meta, links } en la raíz, sin el envelope { success, status, message, data }. El listado no trae el detalle de sucursales y permisos: eso viene en GET /external/operators/{id}.
GET
/
external
/
operators
Listar operadores
curl --request GET \
--url https://api.tiendadepuntos.com/external/operators \
--header 'x-api-key: <api-key>'import requests
url = "https://api.tiendadepuntos.com/external/operators"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.tiendadepuntos.com/external/operators', 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.tiendadepuntos.com/external/operators",
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-api-key: <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://api.tiendadepuntos.com/external/operators"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<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://api.tiendadepuntos.com/external/operators")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tiendadepuntos.com/external/operators")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": 3312,
"role": "operator",
"firstName": "Ana",
"lastName": "Gómez",
"fullName": "Ana Gómez",
"email": "ana@micomercio.com",
"documentNumber": "40100800",
"phone": "+541164593678",
"birthday": "1990-01-01T00:00:00.000Z",
"hasCompletedOnboarding": false,
"branches": [
{
"branchId": 1972,
"branchName": "Sucursal Centro",
"permissionGroupId": 12,
"permissionGroupName": "Cajeros"
}
],
"createdAt": "2026-02-14T12:30:00.000Z",
"updatedAt": "2026-06-01T09:15:00.000Z"
}
],
"meta": {
"totalItems": 128,
"itemCount": 10,
"itemsPerPage": 10,
"totalPages": 13,
"currentPage": 1,
"from": 1,
"to": 10
},
"links": {
"first": "external/operators?page=1&limit=10",
"previous": null,
"next": "external/operators?page=2&limit=10",
"last": "external/operators?page=13&limit=10",
"path": "external/operators",
"firstPageUrl": "external/operators?page=1&limit=10",
"lastPageUrl": "external/operators?page=13&limit=10"
}
}{
"statusCode": 400,
"timestamp": "2026-07-31T14:05:12.431Z",
"path": "/external/tags/add",
"method": "POST",
"message": "Error de validación",
"errors": [
{}
],
"data": {}
}{
"statusCode": 404,
"timestamp": "2026-07-31T14:05:12.431Z",
"path": "/external/tags/add",
"method": "POST",
"message": "Api Key is required",
"errors": [
{}
],
"data": {}
}Authorizations
API key del comercio. Se genera desde el panel de Tienda de Puntos, en Configuración → Integraciones.
Query Parameters
Campo por el que ordenar.
Available options:
fullName, email, role, createdAt Required range:
x >= 1Example:
1
Cantidad de resultados por página. Máximo 200.
Required range:
1 <= x <= 200Example:
10
Búsqueda parcial por nombre.
Example:
"café"
Sentido del orden. Solo aplica si se envía order.
Available options:
asc, desc ⌘I

