POST api/RegistroAlarmas?codigoEmpresa={codigoEmpresa}&cuentaDeAbonado={cuentaDeAbonado}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| codigoEmpresa | string |
Required |
|
| cuentaDeAbonado | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of RegistroAlarmaRest| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Cuenta | integer |
None. |
|
| Alarma | string |
None. |
|
| Fecha | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Cuenta": 2,
"Alarma": "sample string 3",
"Fecha": "2026-06-27T01:36:12.5821754+00:00"
},
{
"Id": 1,
"Cuenta": 2,
"Alarma": "sample string 3",
"Fecha": "2026-06-27T01:36:12.5821754+00:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfRegistroAlarmaRest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Servicios_Ayax.Model">
<RegistroAlarmaRest>
<Alarma>sample string 3</Alarma>
<Cuenta>2</Cuenta>
<Fecha>2026-06-27T01:36:12.5821754+00:00</Fecha>
<Id>1</Id>
</RegistroAlarmaRest>
<RegistroAlarmaRest>
<Alarma>sample string 3</Alarma>
<Cuenta>2</Cuenta>
<Fecha>2026-06-27T01:36:12.5821754+00:00</Fecha>
<Id>1</Id>
</RegistroAlarmaRest>
</ArrayOfRegistroAlarmaRest>