Skip to content

ListCasesForIdentity

Returns list of cases for specified identity.

1
$Domain.ListCasesForIdentity(identity: ( string | Identity ), channelId: string, query: string, start: number, length: number, columns: string, orderBy: string, order: string):DataTable

Parameters

( string | Identity ) identity
    User identity to search cases.

string channelId
    Id number of channel. Optional. If not specified search is performed in all channels.

string query
    Query to execute on cases.

number start
    Start number of results. Default is 0.

number length
    Maximum length of results. Default is 100

string columns
    Comma separated column names to include in result. If not specified all columns are returned.

string orderBy
    of list result

string order
    type of list result

Returns

Instance of DataTable that contains case list.

Remarks

This method is similar to $Domain.ListCases but it returns cases that specified identity has permission.
Exception thrown if specified identity is not found.

See Also