POST api/mobile/getadditionaltrackingmessages
Get device assignment detail
Request Information
URI Parameters
None.
Body Parameters
DeviceAssignmentDetailRequestApiModelName | Description | Type | Additional information |
---|---|---|---|
AssignmentId | globally unique identifier |
None. |
|
Page | integer |
None. |
|
Offset | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "AssignmentId": "8aae88e7-f589-4c3e-8c15-504d31bc94e4", "Page": 1, "Offset": 1 }
application/xml, text/xml
Sample:
<DeviceAssignmentDetailRequestApiModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Deufol.CPCNL.BLL.Models.ApiModels"> <AssignmentId>8aae88e7-f589-4c3e-8c15-504d31bc94e4</AssignmentId> <Offset>1</Offset> <Page>1</Page> </DeviceAssignmentDetailRequestApiModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
DeviceAssignmentDetail
DeviceAssignmentDetailApiModelName | Description | Type | Additional information |
---|---|---|---|
Id | globally unique identifier |
None. |
|
DC | string |
None. |
|
D | string |
None. |
|
TM | Collection of ApiTrackingMessageViewModel |
None. |
Response Formats
application/json, text/json
Sample:
{ "Id": "9dc11c46-d855-464f-acfc-7f07e4addff8", "DC": "sample string 2", "D": "sample string 3", "TM": [ { "RD": "2025-04-03T13:27:27.7799311+02:00", "MT": 1, "T": 2.1, "H": 3, "P": 4, "AX": 5.1, "AY": 6.1, "AZ": 7.1, "La": 8.1, "Lo": 9.1, "SC": 64, "PF": 0, "LS": 11.1, "F3D": 12, "MFI": true, "DA": true }, { "RD": "2025-04-03T13:27:27.7799311+02:00", "MT": 1, "T": 2.1, "H": 3, "P": 4, "AX": 5.1, "AY": 6.1, "AZ": 7.1, "La": 8.1, "Lo": 9.1, "SC": 64, "PF": 0, "LS": 11.1, "F3D": 12, "MFI": true, "DA": true } ] }
application/xml, text/xml
Sample:
<DeviceAssignmentDetailApiModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Deufol.CPCNL.BLL.Models.ApiModels"> <D>sample string 3</D> <DC>sample string 2</DC> <Id>9dc11c46-d855-464f-acfc-7f07e4addff8</Id> <TM> <ApiTrackingMessageViewModel> <AX>5.1</AX> <AY>6.1</AY> <AZ>7.1</AZ> <DA>true</DA> <F3D>12</F3D> <H>3</H> <LS>11.1</LS> <La>8.1</La> <Lo>9.1</Lo> <MFI>true</MFI> <MT>Tracking</MT> <P>4</P> <PF>FixUNDF</PF> <RD>2025-04-03T13:27:27.7799311+02:00</RD> <SC>64</SC> <T>2.1</T> </ApiTrackingMessageViewModel> <ApiTrackingMessageViewModel> <AX>5.1</AX> <AY>6.1</AY> <AZ>7.1</AZ> <DA>true</DA> <F3D>12</F3D> <H>3</H> <LS>11.1</LS> <La>8.1</La> <Lo>9.1</Lo> <MFI>true</MFI> <MT>Tracking</MT> <P>4</P> <PF>FixUNDF</PF> <RD>2025-04-03T13:27:27.7799311+02:00</RD> <SC>64</SC> <T>2.1</T> </ApiTrackingMessageViewModel> </TM> </DeviceAssignmentDetailApiModel>