Integrations key service

List integration key services

Returns a paginated list of the available integration services that keys can be created against (e.g. an ERP or the SII). Each service describes how a key must authenticate (auth_method, identifier_type). Visible to any authenticated user.

This is a distinct collection from /v1/integrations/keys (the stored credentials).

Supports _start/_end pagination, _field/_order sorting, and per-field filters.

get/v1/integrations/key_services

Query parameters

auth_method'token' | 'password'

Filter by authentication method.

Parameters

#/paths/~1v1~1bills/get/parameters/0 — unresolved $ref
#/paths/~1v1~1bills/get/parameters/1 — unresolved $ref
#/paths/~1v1~1bills/get/parameters/2 — unresolved $ref
#/paths/~1v1~1bills/get/parameters/3 — unresolved $ref
#/paths/~1v1~1bills/get/parameters/4 — unresolved $ref

Response

Paginated list of integration key services.

idstring required
namestring required
auth_method'token' | 'password' required
identifier_typestring nullable
image_urlstring nullable
descriptionstring
created_atstring date-time
updated_atstring date-time

Example response

[
  {
    "id": "sii",
    "name": "Servicio de Impuestos Internos",
    "auth_method": "password",
    "identifier_type": "rut"
  }
]

Changes