|
ICaseGetAllCases Method
|
Gets all cases of the given business unit.
Namespace: Severa.APIAssembly: Severa.SOAP.API (in Severa.SOAP.API.dll) Version: 1.0.0+eac46822e0373e9b24c355eca1ce33dc1fce8f8c
SyntaxList<Case> GetAllCases(
string businessUnitGUID,
CaseCriteria criteria = null
)
Function GetAllCases (
businessUnitGUID As String,
Optional criteria As CaseCriteria = Nothing
) As List(Of Case)
Parameters
- businessUnitGUID String
- If given then only cases that belong to the business unit and its sub business units are retrieved.
If not supplied then all cases of the organization are returned.
- criteria CaseCriteria (Optional)
- An optional filter to limit the cases returned.
Return Value
ListCaseList of Case objects.
Exceptions
RemarksCalling this function can return thousands of cases. It is recommended to use GetCasesChangedSince method instead to transfer cases.
See Also