Skip to main content
POST
/
v1
/
get_inbox_test_results
Get Inbox Test Results
curl --request POST \
  --url https://api.campaigncleaner.com/v1/get_inbox_test_results \
  --header 'Content-Type: application/json' \
  --data '
{
  "job_id": "12345"
}
'
{
  "job_id": "12345",
  "test_name": "My Campaign Inbox Test",
  "submitted_date": "2024-04-24T10:30:00",
  "submitted_by": "user@example.com",
  "status": "Completed",
  "summary": {
    "total_seeds": 30,
    "received": 28,
    "inbox": 24,
    "spam": 3,
    "unknown_placement": 1,
    "pending": 2,
    "inbox_rate": 80,
    "spam_rate": 10
  },
  "results": [
    {
      "provider": "Gmail",
      "seed_address": "seed1@gmail.com",
      "email_found": true,
      "placement": "Inbox",
      "spf_status": "pass",
      "sender_ip": "192.168.1.1",
      "submission_result": ""
    },
    {
      "provider": "Outlook",
      "seed_address": "seed2@outlook.com",
      "email_found": true,
      "placement": "Spam",
      "spf_status": "pass",
      "sender_ip": "192.168.1.1",
      "submission_result": ""
    },
    {
      "provider": "Yahoo",
      "seed_address": "seed3@yahoo.com",
      "email_found": false,
      "placement": "Pending",
      "spf_status": "",
      "sender_ip": "",
      "submission_result": ""
    }
  ]
}

Headers

X-CC-API-Key
string

Body

application/json
job_id
string

Response

200 - application/json

OK

The response is of type object.