Update Effectivity Groups (v2)

Endpoint: config/sim/v2/setup/bulkUpdateEffectivityGroups

Pre-Processing Validation Criteria

Validation messages:
  • A non-empty request file is required.

  • You do not have permissions to access this resource.

  • The HierUnitId field is required.

  • The ObjectNumber field is required.

  • The field objectNum must be between 1 and 999999999.

  • Invalid ObjectNumber, it must be non-nullable and non-zero.

  • Name cannot exceed 128 characters.

  • Name should contain a valid language.

  • Duplicate objectNum.

  • Name cannot be null.

  • Invalid Language Code specified: {list of invalid Ids}.

  • Duplicate columnName within dataExtensions.

  • One or more of the End Time(s) is not after Start Time(s) in Active Times.

  • mustActivateBy should be in between the startTime and endTime.

  • Two or more active time records are overrlapping.

Sample Request

[
	{
            "hierUnitId": 2,
            "activeTimes": [
                {
                    "startTime": "2025-05-01T00:00:00",
                    "endTime": "2025-05-03T00:00:00",
                    "timeIsLocal": true,
                    "mustActivateBy": "2025-05-02T00:00:00"
                }
            ],
            "allowLocalControl": true,
            "dataExtensions": [
                {
                    "columnName": "BulkTest",
                    "value": "abcd"
                }
            ],
            "objectNum": 8,
            "name": {
                "2": "EF8"
            }
        }
]