ApiData().GetBehaviorLastModifiedDay

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

Description

This method returns the day of the month that the given Behavior, indicated by the id, was last modified. This value will be between 1 and 31.

Example Usage (C#)


int day = _core.ApiData().GetBehaviorLastModifiedDay(147);

Parameters

int

id

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

Returns

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

ApiData()