People Search Email Results

POST https://webhook.example.com

When the email verifications from the search are done, the results will be sent to you via a POST request to the url you passed in the Search People endpoint.

application/json

Body Required

  • people array[object] Required
    Hide people attributes Show people attributes object
    • id string Required

      Internal ocean id of the person

    • domain string Required

      Domain of the company the person is working for

    • name string | null
    • firstName string | null
    • lastName string | null
    • country string | null
    • location string | null
    • linkedinUrl string | null
    • seniorities array[string] | null

      Values are Owner, Founder, Board Member, C-Level, Partner, VP, Head, Director, Manager, or Other.

    • departments array[string] | null

      Values are Accounting and Finance, Board, Business Support, Customer Relations, Design, Editorial Personnel, Engineering, Founder/Owner, Healthcare, HR, Legal, Management, Manufacturing, Marketing and Advertising, Operations, PR and Communications, Procurement, Product, Quality Control, R&D, Sales, Security, Supply Chain, or Other.

    • photo string | null
    • jobTitle string | null
    • jobTitleEnglish string | null
    • summary string | null
    • email object | null

      Additional properties are allowed.

      Hide email attributes Show email attributes object | null
      • address string | null Required
      • status string Required

        Status of the address: verified, catchAll or guessed

        Values are verified, guessed, catchAll, or notFound.

  • detail string Required

    Status text

  • total integer | null

Responses

  • 200 application/json

    Successful Response

  • 422 application/json

    Validation Error

    Hide response attribute Show response attribute object
    • detail array[object]
      Hide detail attributes Show detail attributes object
POST people_search_emails
Request examples
{
  "people": [
    {
      "id": "e9447c74eafa8a19",
      "domain": "google.com",
      "name": "John Doe",
      "firstName": "John",
      "lastName": "Doe",
      "country": "us",
      "location": "Copenhagen, Capital Region, Denmark",
      "linkedinUrl": "https://www.linkedin.com/in/someone",
      "seniorities": [
        "C-Level",
        "Manager"
      ],
      "departments": [
        "Management",
        "Marketing and Advertising"
      ],
      "photo": "http://media.licdn.com/dms/image/somelink",
      "jobTitle": "Professeur",
      "jobTitleEnglish": "Teacher",
      "summary": "Some text that the person wrote to describe themselves",
      "email": {
        "status": "guessed",
        "address": "guessed@somedomain.com"
      }
    }
  ],
  "detail": "OK",
  "total": 32871
}
Response examples (422)
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}