...
Example Call
Request | Response |
---|
No Format |
---|
POST http://ertan.emakin.com/rest.asmx/getToken HTTP/1.1 |
Content-Type: application/json; charset=utf-8 |
80 No Format |
---|
80
{apiKey:'xxxx', logonId : 'ertan.tike@6kare.com', logonProvider:'Organization' } |
|
Cache-Control: private, max-age=0 |
Content-Type: application/json; charset=utf-8 |
Date: Mon, 26 Oct 2015 21:10:10 GMT |
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 Name | Description |
---|
apiKey | Caller system identifier. |
logonId | User logon id |
logonProvider | User logon provider. |
tag | Worklist identifier. If set to null default inbox is returned. |
Example Call
Request | Response |
---|
No Format |
---|
POST http://ertan.emakin.com/rest.asmx/getWorklist HTTP/1.1 |
Content-Type: application/json; charset=utf-8 |
91 No Format |
---|
91
{apiKey:'xxxx', logonId : 'ertan.tike@6kare.com', logonProvider:'Organization', tag: null } |
|
Cache-Control: private, max-age=0 |
Content-Type: application/json; charset=utf-8 |
Date: Mon, 26 Oct 2015 21:15:17 GMT |
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
}
]
} |
|
...