ApiData().GetBehaviorLastModifiedMonth

Gets the given Behavior’s last modified date “month” value.

Description

This method returns the month that the given Behavior, indicated by the id, was last modified. This value will be between 1 and 12, representing the 12 months between January and December, inclusive.

Example Usage (C#)


int month = _core.ApiData().GetBehaviorLastModifiedMonth(147);

Parameters

int

id

The integer numeric value or variable representing the unique ID of the Behavior.

Return

The integer value (1 or 2 decimal) representing the Behavior’s month of last modification,

ApiData()