ApexERPHost

<back to all web services

GetMobileUserTasks

Requires Authentication
The following routes are available for this service:
GET/Distribution/MobileUsers/{MobileUserId}/Tasks
GET/Distribution/MobileUsers/Tasks/{TaskId}
GET/Distribution/MobileUsers/Tasks
GetMobileUserTasks Parameters:
NameParameterData TypeRequiredDescription
TaskIdpathint?No
MobileUserIdpathint?No
DDatequeryDateTime?No
TermDatequeryDateTime?No
GetMobileUserTasksResponse Parameters:
NameParameterData TypeRequiredDescription
ResultformList<MobileUserTask>No
MobileUserTask Parameters:
NameParameterData TypeRequiredDescription
IdformintNo
MobileUserIdformintNo
BranchIdformintNo
DdateformDateTimeNo
TermDateformDateTimeNo
TaskformstringNo
DoneformboolNo

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

GET /Distribution/MobileUsers/{MobileUserId}/Tasks HTTP/1.1 
Host: apex.nikoratrade.ge 
Accept: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<GetMobileUserTasksResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Apex.Services.Distribution">
  <Result>
    <MobileUserTask>
      <Id>0</Id>
      <MobileUserId>0</MobileUserId>
      <BranchId>0</BranchId>
      <Ddate>0001-01-01T00:00:00</Ddate>
      <TermDate>0001-01-01T00:00:00</TermDate>
      <Task>String</Task>
      <Done>false</Done>
    </MobileUserTask>
  </Result>
</GetMobileUserTasksResponse>