POST api/v1/sigfox/service/acknowledge
POST acknowledge callback from Sigfox for a downlink (BiDIR) request response to indicate the message was received by the device
Request Information
URI Parameters
None.
Body Parameters
AcknowledgeDto| Name | Description | Type | Additional information | 
|---|---|---|---|
| Device | string | 
                             None.  | 
                |
| Time | integer | 
                             None.  | 
                |
| Duplicate | boolean | 
                             None.  | 
                |
| Snr | decimal number | 
                             None.  | 
                |
| Rssi | decimal number | 
                             None.  | 
                |
| Station | string | 
                             None.  | 
                |
| AvgSnr | decimal number | 
                             None.  | 
                |
| Lat | decimal number | 
                             None.  | 
                |
| Lng | decimal number | 
                             None.  | 
                |
| InfoCode | integer | 
                             None.  | 
                |
| InfoMessage | string | 
                             None.  | 
                |
| DownlinkAck | boolean | 
                             None.  | 
                |
| DownlinkOverusage | boolean | 
                             None.  | 
                
Request Formats
application/json, text/json, application/senml+json
            Sample:
        
{
  "Device": "sample string 1",
  "Time": 2,
  "Duplicate": true,
  "Snr": 4.1,
  "Rssi": 5.1,
  "Station": "sample string 6",
  "AvgSnr": 7.1,
  "Lat": 1.1,
  "Lng": 1.1,
  "InfoCode": 8,
  "InfoMessage": "sample string 9",
  "DownlinkAck": true,
  "DownlinkOverusage": true
}
        application/xml, text/xml
            Sample:
        <AcknowledgeDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AnalysisUK.Tinamous.www.ApiControllers.Models.Sigfox"> <AvgSnr>7.1</AvgSnr> <Device>sample string 1</Device> <DownlinkAck>true</DownlinkAck> <DownlinkOverusage>true</DownlinkOverusage> <Duplicate>true</Duplicate> <InfoCode>8</InfoCode> <InfoMessage>sample string 9</InfoMessage> <Lat>1.1</Lat> <Lng>1.1</Lng> <Rssi>5.1</Rssi> <Snr>4.1</Snr> <Station>sample string 6</Station> <Time>2</Time> </AcknowledgeDto>
application/x-www-form-urlencoded
            Sample:
    
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml, application/senml+json
            Sample:
                    
Sample not available.