Cliente API

Endpoints para clientes

Lista de beneficiarios

GET /internal/admin/beneficiaries/clients

Es una lista de clientes reducida a su id y nombre (recomendada para los filtros)

Request

Headers

Content-Type: application/json
Authorization: Bearer <token>
Host: example.org
Cookie: 

Route

GET /internal/admin/beneficiaries/clients

Response

Headers

X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
X-Content-Type-Options: nosniff
X-Download-Options: noopen
X-Permitted-Cross-Domain-Policies: none
Referrer-Policy: strict-origin-when-cross-origin
Content-Type: application/json; charset=utf-8
ETag: W/"89b355220af9bdecfbe02f96e9a8456d"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: c94b5749-41fc-4a3a-9eae-5d111b197a42
X-Runtime: 0.045321
Vary: Origin
Content-Length: 152

Status

200 OK

Body

{
  "data": [
    {
      "id": 10011,
      "name": "Ethan Schinner"
    },
    {
      "id": 10012,
      "name": "Hand-Kohler"
    },
    {
      "id": 10010,
      "name": "Lance Gutmann"
    },
    {
      "id": 10009,
      "name": "Leigh Hirthe"
    }
  ]
}