curl --location --request POST 'https://api.zapmail.ai/api/v2/mailboxes/schedule' \
--header 'x-auth-zapmail: YOUR_API_KEY' \
--header 'x-service-provider: GOOGLE' \
--header 'Content-Type: application/json' \
--data-raw '{
"<domainId1>": [
{ "domainName": "example1.com", "mailboxUsername": "john", "firstName": "John", "lastName": "Doe" },
{ "domainName": "example1.com", "mailboxUsername": "jane", "firstName": "Jane", "lastName": "Smith" }
],
"<domainId2>": [
{ "domainName": "example2.com", "mailboxUsername": "bob", "firstName": "Bob", "lastName": "Wilson" }
]
}'