Skip to content

GetWorklistCount

Returns the total number of records in the worklist. This method can be used to define paging parameters for the * GetWorklist* method.

Required Scope

worklist_read

Parameters

Parameter Name Description
apiKey A unique key used to authenticate and authorise the calling system.
logonId User’s logon Id.
logonProvider The authentication provider used for user login (e.g., 'Organization' for Emakin's default login system).
tag Identifier for the worklist. If set to null, the default inbox is returned.
queryXml Optional parameter for specifying query XML. See query for more details.

Info

The generated token is only used for login purposes and cannot be used as a session token. You may pass this token to the auth parameter to authenticate users and system will issue a new session token for the user.

Example Call

1
2
3
4
5
6
7
8
9
POST https://mydomain.emakin.com/rest/v1/getWorklistCount

{
     "apiKey": "xxxx",
     "logonId": "[email protected]",
     "logonProvider": "Organization",
     "tag": null,
     "queryXml" : ""
}
1
2
3
4
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8

50