Rotas para configuração das conexões DICOM.
Métodos#
Necessário autenticação via role admin.Explicações de status code de retorno#
| Status | Descrição |
|---|
| 500 | Internal server error |
| 409 | Conflict |
| 401 | Unauthorized |
| 400 | Bad request |
| 201 | DICOM configuration created successfully |
| Status | Descrição |
|---|
| 500 | Internal server error |
| 404 | Not found |
| 401 | Unauthorized |
| 400 | Bad request |
| 200 | DICOM configurations listed successfully |
| Status | Descrição |
|---|
| 500 | Internal server error |
| 404 | Not found |
| 401 | Unauthorized |
| 400 | Bad request |
| 200 | DICOM configuration updated successfully |
Parâmetros e body#
POST - Não recebe parâmetros
{
"aetitle": "PACS_ZSCAN",
"host": "localhost",
"port": 104,
"type": "HIS_RIS",
"timeoutSeconds": "1000",
"retryAttempts": "5",
"compressionEnabled": true
}
GET ALL - Não recebe parâmentros (Lista todas as conexões cadastradas)
PUT - Parâmentro id da configuração.
{
"aetitle": "PACS_ZSCAN",
"host": "localhost",
"port": 104,
"type": "HIS_RIS",
"timeoutSeconds": "1000",
"retryAttempts": "5",
"compressionEnabled": true
}
exemplo de alteração somente do aetitle e host
{
"aetitle": "PACS_ZSCAN",
"host": "localhost",
}
Modificado em 2026-01-27 14:17:31