Click or drag to resize

IProductGetProductsChangedSince Method

Gets active Products added or updated after given time.

Namespace: Severa.API
Assembly: Severa.SOAP.API (in Severa.SOAP.API.dll) Version: 1.0.0+9acb7434aeb2855fb928fe129dfe34575a6d8fd4
Syntax
List<Product> GetProductsChangedSince(
	DateTime startDateTime,
	int options
)

Parameters

startDateTime  DateTime
Start DateTime in UTC for the search (Mandatory). Comparison is only precise to the closest minute.
options  Int32
Bitflag. Each bit of the enum represents a separate option. Use 'Bitwise Or' to specify a combination of options.
  • 0 = None.
  • 1 = Return only the products that were created after startDateTime.
  • 2 = Return also inactive products in addition to active ones.

Return Value

ListProduct
List of Product objects.
Exceptions
ExceptionCondition
AuthenticationFailureExceptionThe caller could not be authenticated.
GeneralFailureExceptionAny other fault.
Remarks

Does not return inactive products by default.

Does not return travel expenses.

See Also