curl --request POST \
--url https://api.mailbeast.ai/v1/accounts/bulk \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ids": [
"3f1c2b7e-9a4d-4e18-b2c1-6d8f5a0e7c93",
"8c2f6a19-4b7d-4e53-91a0-5d3e7f6b2c84"
],
"patch": {
"displayName": "Jane Doe",
"firstName": "Jane",
"lastName": "Doe",
"maxEmailsPerDay": 60,
"replyToAddress": "[email protected]",
"sendingGapMinutes": 10,
"campaignSlowRamp": false,
"signature": "Best regards,<br>Jane",
"bcc": "[email protected]",
"automationLanguage": "en",
"tracking": {
"domainId": "9b7d4e53-91a0-4c2f-8a19-5d3e7f6b2c84"
},
"warmup": {
"enabled": true,
"strategy": "standard",
"maxPerDay": 15,
"replyRatePercentage": 35,
"rampupEnabled": true,
"dailyRampup": 1,
"randomizer": 0,
"skipWeekends": false,
"timezone": "Europe/London",
"trackingEnabled": true
}
}
}
'import requests
url = "https://api.mailbeast.ai/v1/accounts/bulk"
payload = {
"ids": ["3f1c2b7e-9a4d-4e18-b2c1-6d8f5a0e7c93", "8c2f6a19-4b7d-4e53-91a0-5d3e7f6b2c84"],
"patch": {
"displayName": "Jane Doe",
"firstName": "Jane",
"lastName": "Doe",
"maxEmailsPerDay": 60,
"replyToAddress": "[email protected]",
"sendingGapMinutes": 10,
"campaignSlowRamp": False,
"signature": "Best regards,<br>Jane",
"bcc": "[email protected]",
"automationLanguage": "en",
"tracking": { "domainId": "9b7d4e53-91a0-4c2f-8a19-5d3e7f6b2c84" },
"warmup": {
"enabled": True,
"strategy": "standard",
"maxPerDay": 15,
"replyRatePercentage": 35,
"rampupEnabled": True,
"dailyRampup": 1,
"randomizer": 0,
"skipWeekends": False,
"timezone": "Europe/London",
"trackingEnabled": True
}
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
ids: ['3f1c2b7e-9a4d-4e18-b2c1-6d8f5a0e7c93', '8c2f6a19-4b7d-4e53-91a0-5d3e7f6b2c84'],
patch: {
displayName: 'Jane Doe',
firstName: 'Jane',
lastName: 'Doe',
maxEmailsPerDay: 60,
replyToAddress: '[email protected]',
sendingGapMinutes: 10,
campaignSlowRamp: false,
signature: 'Best regards,<br>Jane',
bcc: '[email protected]',
automationLanguage: 'en',
tracking: {domainId: '9b7d4e53-91a0-4c2f-8a19-5d3e7f6b2c84'},
warmup: {
enabled: true,
strategy: 'standard',
maxPerDay: 15,
replyRatePercentage: 35,
rampupEnabled: true,
dailyRampup: 1,
randomizer: 0,
skipWeekends: false,
timezone: 'Europe/London',
trackingEnabled: true
}
}
})
};
fetch('https://api.mailbeast.ai/v1/accounts/bulk', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.mailbeast.ai/v1/accounts/bulk",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'ids' => [
'3f1c2b7e-9a4d-4e18-b2c1-6d8f5a0e7c93',
'8c2f6a19-4b7d-4e53-91a0-5d3e7f6b2c84'
],
'patch' => [
'displayName' => 'Jane Doe',
'firstName' => 'Jane',
'lastName' => 'Doe',
'maxEmailsPerDay' => 60,
'replyToAddress' => '[email protected]',
'sendingGapMinutes' => 10,
'campaignSlowRamp' => false,
'signature' => 'Best regards,<br>Jane',
'bcc' => '[email protected]',
'automationLanguage' => 'en',
'tracking' => [
'domainId' => '9b7d4e53-91a0-4c2f-8a19-5d3e7f6b2c84'
],
'warmup' => [
'enabled' => true,
'strategy' => 'standard',
'maxPerDay' => 15,
'replyRatePercentage' => 35,
'rampupEnabled' => true,
'dailyRampup' => 1,
'randomizer' => 0,
'skipWeekends' => false,
'timezone' => 'Europe/London',
'trackingEnabled' => true
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.mailbeast.ai/v1/accounts/bulk"
payload := strings.NewReader("{\n \"ids\": [\n \"3f1c2b7e-9a4d-4e18-b2c1-6d8f5a0e7c93\",\n \"8c2f6a19-4b7d-4e53-91a0-5d3e7f6b2c84\"\n ],\n \"patch\": {\n \"displayName\": \"Jane Doe\",\n \"firstName\": \"Jane\",\n \"lastName\": \"Doe\",\n \"maxEmailsPerDay\": 60,\n \"replyToAddress\": \"[email protected]\",\n \"sendingGapMinutes\": 10,\n \"campaignSlowRamp\": false,\n \"signature\": \"Best regards,<br>Jane\",\n \"bcc\": \"[email protected]\",\n \"automationLanguage\": \"en\",\n \"tracking\": {\n \"domainId\": \"9b7d4e53-91a0-4c2f-8a19-5d3e7f6b2c84\"\n },\n \"warmup\": {\n \"enabled\": true,\n \"strategy\": \"standard\",\n \"maxPerDay\": 15,\n \"replyRatePercentage\": 35,\n \"rampupEnabled\": true,\n \"dailyRampup\": 1,\n \"randomizer\": 0,\n \"skipWeekends\": false,\n \"timezone\": \"Europe/London\",\n \"trackingEnabled\": true\n }\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.mailbeast.ai/v1/accounts/bulk")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"ids\": [\n \"3f1c2b7e-9a4d-4e18-b2c1-6d8f5a0e7c93\",\n \"8c2f6a19-4b7d-4e53-91a0-5d3e7f6b2c84\"\n ],\n \"patch\": {\n \"displayName\": \"Jane Doe\",\n \"firstName\": \"Jane\",\n \"lastName\": \"Doe\",\n \"maxEmailsPerDay\": 60,\n \"replyToAddress\": \"[email protected]\",\n \"sendingGapMinutes\": 10,\n \"campaignSlowRamp\": false,\n \"signature\": \"Best regards,<br>Jane\",\n \"bcc\": \"[email protected]\",\n \"automationLanguage\": \"en\",\n \"tracking\": {\n \"domainId\": \"9b7d4e53-91a0-4c2f-8a19-5d3e7f6b2c84\"\n },\n \"warmup\": {\n \"enabled\": true,\n \"strategy\": \"standard\",\n \"maxPerDay\": 15,\n \"replyRatePercentage\": 35,\n \"rampupEnabled\": true,\n \"dailyRampup\": 1,\n \"randomizer\": 0,\n \"skipWeekends\": false,\n \"timezone\": \"Europe/London\",\n \"trackingEnabled\": true\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mailbeast.ai/v1/accounts/bulk")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"ids\": [\n \"3f1c2b7e-9a4d-4e18-b2c1-6d8f5a0e7c93\",\n \"8c2f6a19-4b7d-4e53-91a0-5d3e7f6b2c84\"\n ],\n \"patch\": {\n \"displayName\": \"Jane Doe\",\n \"firstName\": \"Jane\",\n \"lastName\": \"Doe\",\n \"maxEmailsPerDay\": 60,\n \"replyToAddress\": \"[email protected]\",\n \"sendingGapMinutes\": 10,\n \"campaignSlowRamp\": false,\n \"signature\": \"Best regards,<br>Jane\",\n \"bcc\": \"[email protected]\",\n \"automationLanguage\": \"en\",\n \"tracking\": {\n \"domainId\": \"9b7d4e53-91a0-4c2f-8a19-5d3e7f6b2c84\"\n },\n \"warmup\": {\n \"enabled\": true,\n \"strategy\": \"standard\",\n \"maxPerDay\": 15,\n \"replyRatePercentage\": 35,\n \"rampupEnabled\": true,\n \"dailyRampup\": 1,\n \"randomizer\": 0,\n \"skipWeekends\": false,\n \"timezone\": \"Europe/London\",\n \"trackingEnabled\": true\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"updated": 5,
"skipped": 1,
"skippedAccounts": [
{
"id": "3f1c2b7e-9a4d-4e18-b2c1-6d8f5a0e7c93",
"email": "[email protected]",
"status": "checking",
"reason": "Account is being verified."
}
]
}{
"error": {
"type": "invalid_request_error",
"code": "validation_failed",
"message": "One or more fields are invalid.",
"status": 400,
"requestId": "e4f1c0b2-6a3d-4b8e-9f21-0a1b2c3d4e5f",
"details": [
"name should not be empty"
]
}
}{
"error": {
"type": "authentication_error",
"code": "unauthenticated",
"message": "Missing or invalid API key.",
"status": 401,
"requestId": "e4f1c0b2-6a3d-4b8e-9f21-0a1b2c3d4e5f"
}
}{
"error": {
"type": "authorization_error",
"code": "permission_denied",
"message": "This API key is missing the required scope.",
"status": 403,
"requestId": "e4f1c0b2-6a3d-4b8e-9f21-0a1b2c3d4e5f"
}
}{
"error": {
"type": "invalid_request_error",
"code": "conflict",
"message": "The request conflicts with an existing resource.",
"status": 409,
"requestId": "e4f1c0b2-6a3d-4b8e-9f21-0a1b2c3d4e5f"
}
}{
"error": {
"type": "invalid_request_error",
"code": "idempotency_key_reused",
"message": "The Idempotency-Key was already used with a different request body. Use a new key for a new operation.",
"status": 422,
"requestId": "e4f1c0b2-6a3d-4b8e-9f21-0a1b2c3d4e5f"
}
}{
"error": {
"type": "rate_limit_error",
"code": "rate_limited",
"message": "Too many requests. Retry after the interval in the Retry-After header.",
"status": 429,
"requestId": "e4f1c0b2-6a3d-4b8e-9f21-0a1b2c3d4e5f",
"retryAfter": 30
}
}Bulk update mailboxes
Apply ONE settings/limits patch OR one status change (active/inactive) across many mailboxes. patch and status are mutually exclusive.
Requires one of the following scopes: accounts:write, accounts:all, all:all.
curl --request POST \
--url https://api.mailbeast.ai/v1/accounts/bulk \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ids": [
"3f1c2b7e-9a4d-4e18-b2c1-6d8f5a0e7c93",
"8c2f6a19-4b7d-4e53-91a0-5d3e7f6b2c84"
],
"patch": {
"displayName": "Jane Doe",
"firstName": "Jane",
"lastName": "Doe",
"maxEmailsPerDay": 60,
"replyToAddress": "[email protected]",
"sendingGapMinutes": 10,
"campaignSlowRamp": false,
"signature": "Best regards,<br>Jane",
"bcc": "[email protected]",
"automationLanguage": "en",
"tracking": {
"domainId": "9b7d4e53-91a0-4c2f-8a19-5d3e7f6b2c84"
},
"warmup": {
"enabled": true,
"strategy": "standard",
"maxPerDay": 15,
"replyRatePercentage": 35,
"rampupEnabled": true,
"dailyRampup": 1,
"randomizer": 0,
"skipWeekends": false,
"timezone": "Europe/London",
"trackingEnabled": true
}
}
}
'import requests
url = "https://api.mailbeast.ai/v1/accounts/bulk"
payload = {
"ids": ["3f1c2b7e-9a4d-4e18-b2c1-6d8f5a0e7c93", "8c2f6a19-4b7d-4e53-91a0-5d3e7f6b2c84"],
"patch": {
"displayName": "Jane Doe",
"firstName": "Jane",
"lastName": "Doe",
"maxEmailsPerDay": 60,
"replyToAddress": "[email protected]",
"sendingGapMinutes": 10,
"campaignSlowRamp": False,
"signature": "Best regards,<br>Jane",
"bcc": "[email protected]",
"automationLanguage": "en",
"tracking": { "domainId": "9b7d4e53-91a0-4c2f-8a19-5d3e7f6b2c84" },
"warmup": {
"enabled": True,
"strategy": "standard",
"maxPerDay": 15,
"replyRatePercentage": 35,
"rampupEnabled": True,
"dailyRampup": 1,
"randomizer": 0,
"skipWeekends": False,
"timezone": "Europe/London",
"trackingEnabled": True
}
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
ids: ['3f1c2b7e-9a4d-4e18-b2c1-6d8f5a0e7c93', '8c2f6a19-4b7d-4e53-91a0-5d3e7f6b2c84'],
patch: {
displayName: 'Jane Doe',
firstName: 'Jane',
lastName: 'Doe',
maxEmailsPerDay: 60,
replyToAddress: '[email protected]',
sendingGapMinutes: 10,
campaignSlowRamp: false,
signature: 'Best regards,<br>Jane',
bcc: '[email protected]',
automationLanguage: 'en',
tracking: {domainId: '9b7d4e53-91a0-4c2f-8a19-5d3e7f6b2c84'},
warmup: {
enabled: true,
strategy: 'standard',
maxPerDay: 15,
replyRatePercentage: 35,
rampupEnabled: true,
dailyRampup: 1,
randomizer: 0,
skipWeekends: false,
timezone: 'Europe/London',
trackingEnabled: true
}
}
})
};
fetch('https://api.mailbeast.ai/v1/accounts/bulk', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.mailbeast.ai/v1/accounts/bulk",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'ids' => [
'3f1c2b7e-9a4d-4e18-b2c1-6d8f5a0e7c93',
'8c2f6a19-4b7d-4e53-91a0-5d3e7f6b2c84'
],
'patch' => [
'displayName' => 'Jane Doe',
'firstName' => 'Jane',
'lastName' => 'Doe',
'maxEmailsPerDay' => 60,
'replyToAddress' => '[email protected]',
'sendingGapMinutes' => 10,
'campaignSlowRamp' => false,
'signature' => 'Best regards,<br>Jane',
'bcc' => '[email protected]',
'automationLanguage' => 'en',
'tracking' => [
'domainId' => '9b7d4e53-91a0-4c2f-8a19-5d3e7f6b2c84'
],
'warmup' => [
'enabled' => true,
'strategy' => 'standard',
'maxPerDay' => 15,
'replyRatePercentage' => 35,
'rampupEnabled' => true,
'dailyRampup' => 1,
'randomizer' => 0,
'skipWeekends' => false,
'timezone' => 'Europe/London',
'trackingEnabled' => true
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.mailbeast.ai/v1/accounts/bulk"
payload := strings.NewReader("{\n \"ids\": [\n \"3f1c2b7e-9a4d-4e18-b2c1-6d8f5a0e7c93\",\n \"8c2f6a19-4b7d-4e53-91a0-5d3e7f6b2c84\"\n ],\n \"patch\": {\n \"displayName\": \"Jane Doe\",\n \"firstName\": \"Jane\",\n \"lastName\": \"Doe\",\n \"maxEmailsPerDay\": 60,\n \"replyToAddress\": \"[email protected]\",\n \"sendingGapMinutes\": 10,\n \"campaignSlowRamp\": false,\n \"signature\": \"Best regards,<br>Jane\",\n \"bcc\": \"[email protected]\",\n \"automationLanguage\": \"en\",\n \"tracking\": {\n \"domainId\": \"9b7d4e53-91a0-4c2f-8a19-5d3e7f6b2c84\"\n },\n \"warmup\": {\n \"enabled\": true,\n \"strategy\": \"standard\",\n \"maxPerDay\": 15,\n \"replyRatePercentage\": 35,\n \"rampupEnabled\": true,\n \"dailyRampup\": 1,\n \"randomizer\": 0,\n \"skipWeekends\": false,\n \"timezone\": \"Europe/London\",\n \"trackingEnabled\": true\n }\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.mailbeast.ai/v1/accounts/bulk")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"ids\": [\n \"3f1c2b7e-9a4d-4e18-b2c1-6d8f5a0e7c93\",\n \"8c2f6a19-4b7d-4e53-91a0-5d3e7f6b2c84\"\n ],\n \"patch\": {\n \"displayName\": \"Jane Doe\",\n \"firstName\": \"Jane\",\n \"lastName\": \"Doe\",\n \"maxEmailsPerDay\": 60,\n \"replyToAddress\": \"[email protected]\",\n \"sendingGapMinutes\": 10,\n \"campaignSlowRamp\": false,\n \"signature\": \"Best regards,<br>Jane\",\n \"bcc\": \"[email protected]\",\n \"automationLanguage\": \"en\",\n \"tracking\": {\n \"domainId\": \"9b7d4e53-91a0-4c2f-8a19-5d3e7f6b2c84\"\n },\n \"warmup\": {\n \"enabled\": true,\n \"strategy\": \"standard\",\n \"maxPerDay\": 15,\n \"replyRatePercentage\": 35,\n \"rampupEnabled\": true,\n \"dailyRampup\": 1,\n \"randomizer\": 0,\n \"skipWeekends\": false,\n \"timezone\": \"Europe/London\",\n \"trackingEnabled\": true\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mailbeast.ai/v1/accounts/bulk")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"ids\": [\n \"3f1c2b7e-9a4d-4e18-b2c1-6d8f5a0e7c93\",\n \"8c2f6a19-4b7d-4e53-91a0-5d3e7f6b2c84\"\n ],\n \"patch\": {\n \"displayName\": \"Jane Doe\",\n \"firstName\": \"Jane\",\n \"lastName\": \"Doe\",\n \"maxEmailsPerDay\": 60,\n \"replyToAddress\": \"[email protected]\",\n \"sendingGapMinutes\": 10,\n \"campaignSlowRamp\": false,\n \"signature\": \"Best regards,<br>Jane\",\n \"bcc\": \"[email protected]\",\n \"automationLanguage\": \"en\",\n \"tracking\": {\n \"domainId\": \"9b7d4e53-91a0-4c2f-8a19-5d3e7f6b2c84\"\n },\n \"warmup\": {\n \"enabled\": true,\n \"strategy\": \"standard\",\n \"maxPerDay\": 15,\n \"replyRatePercentage\": 35,\n \"rampupEnabled\": true,\n \"dailyRampup\": 1,\n \"randomizer\": 0,\n \"skipWeekends\": false,\n \"timezone\": \"Europe/London\",\n \"trackingEnabled\": true\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"updated": 5,
"skipped": 1,
"skippedAccounts": [
{
"id": "3f1c2b7e-9a4d-4e18-b2c1-6d8f5a0e7c93",
"email": "[email protected]",
"status": "checking",
"reason": "Account is being verified."
}
]
}{
"error": {
"type": "invalid_request_error",
"code": "validation_failed",
"message": "One or more fields are invalid.",
"status": 400,
"requestId": "e4f1c0b2-6a3d-4b8e-9f21-0a1b2c3d4e5f",
"details": [
"name should not be empty"
]
}
}{
"error": {
"type": "authentication_error",
"code": "unauthenticated",
"message": "Missing or invalid API key.",
"status": 401,
"requestId": "e4f1c0b2-6a3d-4b8e-9f21-0a1b2c3d4e5f"
}
}{
"error": {
"type": "authorization_error",
"code": "permission_denied",
"message": "This API key is missing the required scope.",
"status": 403,
"requestId": "e4f1c0b2-6a3d-4b8e-9f21-0a1b2c3d4e5f"
}
}{
"error": {
"type": "invalid_request_error",
"code": "conflict",
"message": "The request conflicts with an existing resource.",
"status": 409,
"requestId": "e4f1c0b2-6a3d-4b8e-9f21-0a1b2c3d4e5f"
}
}{
"error": {
"type": "invalid_request_error",
"code": "idempotency_key_reused",
"message": "The Idempotency-Key was already used with a different request body. Use a new key for a new operation.",
"status": 422,
"requestId": "e4f1c0b2-6a3d-4b8e-9f21-0a1b2c3d4e5f"
}
}{
"error": {
"type": "rate_limit_error",
"code": "rate_limited",
"message": "Too many requests. Retry after the interval in the Retry-After header.",
"status": 429,
"requestId": "e4f1c0b2-6a3d-4b8e-9f21-0a1b2c3d4e5f",
"retryAfter": 30
}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Headers
Optional. A unique key you generate (max 255 chars, such as a UUID) that makes this request safe to retry. Retrying with the same key replays the original response instead of repeating the operation. Reusing a key with a different body returns 422.
255"a1b2c3d4-e5f6-7890-abcd-ef1234567890"
Body
Target account ids.
1000[
"3f1c2b7e-9a4d-4e18-b2c1-6d8f5a0e7c93",
"8c2f6a19-4b7d-4e53-91a0-5d3e7f6b2c84"
]
Enable (active) or disable (inactive) sending across the set. Mutually exclusive with patch.
active, inactive Settings/limits to apply to every account. Mutually exclusive with status.
Show child attributes
Show child attributes