PUT /messaging/v1/email/seed-list-account

Update account data for a seed-list. The MID is used from authentication. This method returns the partner list and auto-seed options that are in place for the MID as a result of this transaction. The value for autoSeedThreshold is a positive integer between 1, and 2147483647 (Integer32.Max_Value, or hex 0x7FFFFFFF).

The payload is shortened when setting the autoSeedEnabled setting to false

JSON Parameters when setting autoSeedEnabled to true:

NameType Description
autoSeedListIdstringRequiredA globally unique identifier (GUID).
autoSeedThresholdinteger The threshold for auto-seeding: >= 1 and <= 2147483647. Default value is 10000.
autoSeedEnabledbooleanRequiredA true or false value indicating whether auto-seed is enabled.

JSON Parameters when setting autoSeedEnabled to false:

NameType Description
autoSeedEnabledbooleanRequiredA false value to disable auto-seeding.
StatusNameType Description
200   Successful update of account data, in this instance, to enable auto-seeding.
 autoSeedListIdstringRequiredA globally unique identifier (GUID).
 autoSeedThresholdinteger The threshold for auto-seeding: >= 1 and <= 2147483647. Default value is 10000.
 autoSeedEnabledbooleanRequiredA true or false value indicating whether auto-seed is enabled.
200   Successful update of account data, in this case, to disable auto-seeding.
 autoSeedEnabledbooleanRequiredA false value to disable auto-seeding.
  • The value of autoSeedEnabled is mandatory. It must have a true or a false value.
  • If autoSeedEnabled is true, autoSeedListId is a mandatory field & can't be empty, nor a default GUID.
  • If autoSeedThreshold isn’t explicitly set, 10000 is set as default.
  • If autoSeedEnabled is false, no other fields must be sent in the input request. In this case, autoSeedListId is set to null, and autoSeedThreshold is set to the default value, 10000.
  • If the partner is disabled but auto-seed has default seed list set to a disabled partner seed-list, this call returns an error.
HTTP StatusDescriptionNotes
400SeedListId is inactive, or non-existent, or there's no mapping of this seedListId for the PartnerAppId.Error code: 30001
400No active auto-seed-list mapping for the given MID.Error code: 10002/10005, ValidationExceptionInvalidMessageFormat
429API rate limit throttling is preventing success.

Setting autoSeedEnabled to true, the validation requires explicit setting of parameter autoSeedListId. The value of autoSeedThreshold must be explicitly set to any value other than the default 10000:

Setting autoSeedEnabled to false, no other fields must be explicitly set. The value of autoSeedListId is set to null, and autoSeedThreshold is set to the default value, 10000.