Click or drag to resize

IResourceAllocationGetResourceAllocations Method

Gets Resource allocations matching the given criteria.

Namespace: Severa.API
Assembly: Severa.SOAP.API (in Severa.SOAP.API.dll) Version: 1.0.0+9acb7434aeb2855fb928fe129dfe34575a6d8fd4
Syntax
ICollection<ResourceAllocation> GetResourceAllocations(
	ICollection<string> caseGUIDs,
	ICollection<string> userGUIDs,
	ICollection<string> businessUnitGUIDs,
	ICollection<string> supervisorUserGUIDs,
	ICollection<string> caseStatusGUIDs,
	ICollection<string> salesProcessGUIDs,
	ICollection<string> caseTagGUIDs,
	ICollection<string> userTagGUIDs,
	DateTime? startDate,
	DateTime? endDate
)

Parameters

caseGUIDs  ICollectionString
Filters results: Resource allocations, that belong to given cases, are returned.
userGUIDs  ICollectionString
Filters results: Resource allocations, that belong to given users, are returned.
businessUnitGUIDs  ICollectionString
Filters results: Resource allocations for users, that belong to any of the given business units, are returned.
supervisorUserGUIDs  ICollectionString
Filters results: Resource allocations are returned from those users, who have given supervisor.
caseStatusGUIDs  ICollectionString
Filters results: Resource allocations, that belong to cases with one of the case statuses, are returned.
salesProcessGUIDs  ICollectionString
Filters results: Resource allocations, that belong to cases with a sales process in this set.
caseTagGUIDs  ICollectionString
Filters results: Resource allocations, that belong to cases that has one of the given keywords, are returned.
userTagGUIDs  ICollectionString
Filters results: Resource allocations, that belong to users that have one of the given keywords, are returned.
startDate  NullableDateTime
Filters results: Resource allocations, that end after this date, are returned.
endDate  NullableDateTime
Filters results: Resource allocations, that start before this date, are returned.

Return Value

ICollectionResourceAllocation
Collection of ResourceAllocation objects.
Exceptions
ExceptionCondition
AuthenticationFailureExceptionThe caller could not be authenticated.
ValidationExceptionInput data was not valid.
GeneralFailureExceptionAny other fault.
See Also