Fetches the details of an order, including information about both mailboxes and domains.Query Parameter#
orderId#
Description: Order Id of the order
Example: 4BAW43MZVHM0YTH4W9663PJJ8XAQ
Request
Add parameter in header cmr-x-api-key
Example:cmr-x-api-key: ********************
or
Request Code Samples
curl --location -g --request GET 'https://customers.coldmailreseller.com/api/v1/integration/orders?orderId={{order-id}}' \
--header 'cmr-x-api-key: <api-key>'
Responses
application/json {
"status": 200,
"message": "Order details fetched successfully",
"data": [
{
"domainName": "yourchekers.org",
"price": 17.32,
"years": 1,
"quantity": 1,
"orderedProduct": "DOMAIN"
},
{
"domainName": "yourchekers.org",
"price": 11,
"years": 1,
"quantity": 1,
"orderedProduct": "GOOGLE_MAILBOX"
}
]
}
Modified at 2025-12-15 07:51:03