1. Placement Test
  • Welcome to the Cold Mail Reseller API
  • Get Started
    • Overview
    • Authentication
    • Quick Start
  • Core Concepts
    • Users
    • Domains
    • DNS Management
    • Mailboxes
    • Subscriptions
    • Pre-Warmup
    • Domain Renewal
    • 1+ Year Subscriptions
    • Mailbox Warmup
    • Platform Exports
    • OAuth Exports
    • Sandbox API
  • API Reference
    • Users
      • List Users
      • Get User
      • Create User
      • Update User
      • Delete User
    • Geo
      • List Countries
      • List States
    • Domains
      • Domain Renewal
        • Get Domain Renewal Prices
        • Renew Domains
        • Toggle Domain Auto-Renew
      • Get Domains by User
      • Check Domain Availability
      • Check Single Domain Availability
      • Check Workspace Existence
      • Set Domain Forwarding
      • Set Email Forwarding
      • Delete Domains
    • DNS
      • Get DNS Records
      • Add DNS Records
      • Update DNS Record
      • Update Nameservers
      • Delete DNS Record
    • Mailboxes
      • List Mailboxes
      • Get Mailboxes by User
      • Get Mailbox
      • Get Admin Mailbox Details
      • Update Mailbox Details
      • Delete Mailbox
    • Mailbox Warmup
      • Add Warmup to Mailbox
      • Toggle Warmup
      • Update Warmup Settings
      • Set Warmup Status
      • Disable Warmup
    • Orders
      • Get Order Status
      • Get Order Details
      • Create Order
      • Create Order (JSON)
      • Create Mailbox Order (JSON)
      • Process Order
    • Subscriptions
      • 1+ Year Subscription
        • Recreate Subscription
      • Get Subscriptions
      • Renew Subscriptions
      • Cancel Subscription
      • Toggle Auto-Renewal
    • Exports
      • Platform Exports
        • Get Platform Credentials
        • Add Platform Credential
        • Export Mailboxes to Platform
        • Remove Platform Credential
      • OAuth Exports
        • Perform OAuth
        • Add Client ID to Domains
    • Pre-Warmup
      • Sandbox
        • Get Sandbox Pre-warmup Domains
        • Order Sandbox Pre-warmup
        • Reset Sandbox Pre-warmup
      • Get Pre-warmup Domains
      • Order Pre-warmup
    • Placement Test
      • Create Placement Order
        POST
      • Get Placement Reports
        GET
  • Resources
    • Errors
    • Rate Limits
    • Pagination
    • Sandbox
    • MCP
  • Webhooks
    • Overview
    • Events
      • Domain Events
      • Mailbox Events
      • Subscription Events
      • Prewarmup Events
      • Mailbox Warmup Events
  • Schemas
    • Error
    • Success
    • MessageResponse
    • User
    • Domain
    • ErrorResponse
    • Mailbox
    • Subscription
    • DnsRecord
    • Error Response
    • Pagination Meta
    • Action Error Response
    • PrewarmupOrderResult
    • OrderCreationResult
  1. Placement Test

Get Placement Reports

GET
/placement/reports
Returns paginated placement test reports for a user.
Results are grouped by orderId — one purchase of multiple mailboxes appears as a single report entry with a mailboxes array. The aggregate status reflects the worst-case across all mailboxes in the group.
Filtering:
Pass orderId to fetch a specific order group by OrderId.
Pass mailboxId to fetch all orders for a specific mailbox.
AI Insight: If aiInsightRequested is true while placing placement test order, the aiInsight field will be populated once generation is complete.

Request

Authorization
API Key
Add parameter in header
cmr-x-api-key
Example:
cmr-x-api-key: ********************
or
Query Params

Responses

🟢200Success
application/json
Paginated list of placement order groups, newest first.
Bodyapplication/json

🟠401Unauthorized
🟠404Not Found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://customers.coldmailreseller.com/api/v1/integration/placement/reports?userId=H8M9JV2S9HMPYFQW393AZHQVD4XM&orderId=7K2M9P4Q1R8S5T3U6V0W2X4Y8Z1A&mailboxId=GP6M2J2DHXM3F2J40S8AP316R2QR&page=1&limit=10' \
--header 'cmr-x-api-key: <api-key>'
Response Response Example
200 - Example 1
{
    "status": 200,
    "message": "Success",
    "data": {
        "data": [
            {
                "orderId": "7K2M9P4Q1R8S5T3U6V0W2X4Y8Z1A",
                "status": "PENDING",
                "spamassassin": true,
                "blacklist": true,
                "createdAt": "2026-08-08T10:30:00.000Z",
                "mailboxCount": 2,
                "mailboxes": [
                    {
                        "placementOrderId": "3N5P7Q9R1S4T6U8V",
                        "fromEmail": "john@acme.com",
                        "status": "PENDING",
                        "report": {
                            "inboxTest": {
                                "google": [
                                    {}
                                ],
                                "microsoft365": [
                                    {}
                                ]
                            },
                            "spamassassin": {},
                            "blacklist": {}
                        },
                        "aiInsightRequested": true,
                        "aiInsight": {
                            "summary": "Your domain has strong SPF/DKIM alignment. Sending volume is within safe limits.",
                            "riskLevel": "LOW",
                            "recommendations": [
                                "Enable DMARC policy",
                                "Reduce sending frequency by 20%"
                            ]
                        }
                    }
                ]
            }
        ],
        "totalCount": 5
    }
}
Modified at 2026-08-10 06:34:48
Previous
Create Placement Order
Next
Errors
Built with