ACTIVE before mailboxes can be requested.curl --location --request POST '/mailboxes' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"domain": "yourdomain.com",
"type": "microsoft",
"mailboxes": [
{
"firstName": "John",
"lastName": "Smith",
"mailboxUsername": "john.smith"
},
{
"firstName": "Jane",
"lastName": "Doe",
"mailboxUsername": "jane.doe"
}
]
}'{
"success": true,
"requestId": "req_abc123",
"type": "microsoft",
"domain": "yourdomain.com",
"status": "pending",
"message": "Your mailbox request has been received and is being processed.",
"mailboxes": [
{
"firstName": "John",
"lastName": "Smith",
"mailboxUsername": "john.smith",
"domainName": "yourdomain.com"
}
]
}