GET api/Alarm?callId={callId}&personId={personId}&countryId={countryId}&alarmTypeID={alarmTypeID}
Este metodo consulta si un cliente tiene activa alguna alarma de un determinado tipo
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| callId |
Id de la llamada |
string |
Required |
| personId |
Id de la persona BD relacionamiento |
string |
Required |
| countryId |
Siglas pais ej. CO |
string |
Required |
| alarmTypeID |
Tipo de alarma |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Alarma del cliente
Alarm| Name | Description | Type | Additional information |
|---|---|---|---|
| AttendedChannel | integer |
None. |
|
| AttendedDate | date |
None. |
|
| Contract | string |
None. |
|
| Id | integer |
None. |
|
| PersonId | string |
None. |
|
| Product | string |
None. |
|
| State | integer |
None. |
|
| Type | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"AttendedChannel": 1,
"AttendedDate": "2026-05-16T13:11:02.1801315-05:00",
"Contract": "sample string 3",
"Id": 4,
"PersonId": "sample string 5",
"Product": "sample string 6",
"State": 7,
"Type": 8
}
application/xml, text/xml
Sample:
<Alarm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SkCo.AudioIvr.Entities"> <AttendedChannel>1</AttendedChannel> <AttendedDate>2026-05-16T13:11:02.1801315-05:00</AttendedDate> <Contract>sample string 3</Contract> <Id>4</Id> <PersonId>sample string 5</PersonId> <Product>sample string 6</Product> <State>7</State> <Type>8</Type> </Alarm>