ApiData().GetBehaviorCreatedMonth

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

Description

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

Example Usage (C#)


int month = _core.ApiData().GetBehaviorCreatedMonth(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 month of creation.

ApiData()