domainStatus / mailboxStatus: PENDING (order not yet fulfilled for this item), SUCCESS (the underlying order step succeeded), FAILED (the underlying order step failed), ACTIVE (the domain/mailbox itself is active — takes priority once fulfilled), INACTIVE (domain is inactive, or mailbox has expired).curl --location 'https://customers.coldmailreseller.com/api/v1/integration/orders/status?orderId=ord_R8K2LQPZA9XM' \
--header 'cmr-x-api-key: <api-key>'{
"status": 200,
"message": "Order status fetched successfully",
"data": {
"orders": {
"domains": [
{
"domain": "string",
"domainStatus": "PENDING"
}
],
"mailboxes": {
"property1": [
{
"username": "string",
"mailboxStatus": "PENDING"
}
],
"property2": [
{
"username": "string",
"mailboxStatus": "PENDING"
}
]
},
"isPrewarmup": true
}
}
}