Parámetros de solicitud
- realm_id - El identificador del dominio.
- page: int → i.e : 0 → Página actual recuperada. OBLIGATORIO
- size: int → i.e : 10 → Número de elementos recuperados. MANDATORIO
- sort: string → i.e :ASC, DESC → Tipo de ordenación. OPCIONAL
- encabezado de la solicitud
- Autorización {jwt}
Solicitud
GET https://afw.biocryptology.com/realm/v1/api/realms/{realm_id}/accesspoints
I.E de la petición: https://afw.biocryptology.com/realm/v1/api/realms/{realm_id}/accesspoints
Respuesta
- OK 200 - Puntos de acceso y conectores recuperados correctamente
{
"totalPages": 0,
"totalElements": 0,
"size": 0,
"content": [
{
"name": "string",
"description": "string",
"realmId": "string",
"creationDate": "2024-03-08T13:38:56.679Z",
"modificationDate": "2024-03-08T13:38:56.679Z",
"enableStoreQR": true,
"enableUserGroupFilter": true,
"qrTTL": 0,
"connectors": [
{
"clientId": "string",
"name": "string",
"description": "string",
"type": "string",
"connectionType": "string",
"enableSecret": true,
"secret": "string",
"creationDate": "2024-03-08T13:38:56.679Z",
"modificationDate": "2024-03-08T13:38:56.679Z",
"urls": [
{
"id": "string",
"url": "string",
"type": "string",
"creationDate": "2024-03-08T13:38:56.679Z",
"modificationDate": "2024-03-08T13:38:56.679Z"
}
]
}
],
"userGroupUuid": "string"
}
],
"number": 0,
"sort": {
"empty": true,
"unsorted": true,
"sorted": true
},
"pageable": {
"offset": 0,
"sort": {
"empty": true,
"unsorted": true,
"sorted": true
},
"paged": true,
"unpaged": true,
"pageNumber": 0,
"pageSize": 0
},
"last": true,
"first": true,
"numberOfElements": 0,
"empty": true
}
- KO 400
- Realm Id inválido - { mensaje: "invalid_realm_id" }
- Página no válida
- Tamaño no válido
- KO 401 - Ningún mensaje adjunto
- Token o JWT no válidos
- No se ha encontrado el realm
- Parámetro de clasificación no permitido
- No hay AccessPoint vinculado para el Realm existente
-
KO 404
-
User group no encontrado - { mensaje: "accessPoint_not_found” }
-