Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Example Call

RequestResponse
No Format
POST http://ertan.emakin.com/rest.asmx/getToken HTTP/1.1


Content-Type: application/json; charset=utf-8


Host: ertan.emakin.com


Content-Length:
80
No Format
 80
 
{apiKey:'xxxx', logonId : 'ertan.tike@6kare.com', logonProvider:'Organization' }
No Format
HTTP/1.1 200 OK


Cache-Control: private, max-age=0


Content-Type: application/json; charset=utf-8


Date: Mon, 26 Oct 2015 21:10:10 GMT


Content-Length:
144
No Format
 144
 
{"d":"41AA3CE3CAFBD85ABD1A5145FB62F154E0332589E4C0A3D0BCA5E2C1159CCD04037BB9FF6E3F993DB6DF30A336D388F0F92E28FB89798BAC2415ADA88926600529BF811441AA3CE3CAFB..............BF8114"}

GetWorklist

Returns the list of work items on user's worklist. Tag parameter specifies the identifier of which list should be return.

...

Parameter NameDescription
apiKeyCaller system identifier.
logonIdUser logon id
logonProviderUser logon provider.
tagWorklist identifier. If set to null default inbox is returned.

Example Call

RequestResponse
No Format
POST http://ertan.emakin.com/rest.asmx/getWorklist HTTP/1.1


Content-Type: application/json; charset=utf-8


Host: ertan.emakin.com


Content-Length:
91
No Format
 91
 
{apiKey:'xxxx', logonId : 'ertan.tike@6kare.com', logonProvider:'Organization', tag: null }
No Format
HTTP/1.1 200 OK


Cache-Control: private, max-age=0


Content-Type: application/json; charset=utf-8


Date: Mon, 26 Oct 2015 21:15:17 GMT


Content-Length:
1245
No Format
 1245
 
{
   "d":[
      {
         "Id":"e5134318-88bd-4a33-b561-4d78380734ce",
         "Caption":"A new task",
         "Start":"/Date(1445812020394)/",
         "End":null,
         "Instructions":"Please complete.",
         "State":"Waiting",
         "Number":12471
      },
      {
         "Id":"796a34c6-fd2e-450e-a2af-8124ea68f8ca",
         "Caption":"A new other task",
         "Start":"/Date(1445512843034)/",
         "End":null,
         "Instructions":"Please complete.",
         "State":"Waiting",
         "Number":12468
      }
   ]
}

...