# Linkedin to HEM

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /lead/resolution/linkedin_to_hem:
    post:
      summary: Linkedin to HEM
      deprecated: false
      description: >+
        <p>Activate your hashed audiences. Email To HEM matches SHA-256 hashed
        emails against the Springbolt identity graph, and returns verified
        plaintext addresses, so the audiences you built for ads can also fuel
        email sequences, CRM imports, and SDR outreach. Industry-leading match
        rates on a US-based identity graph.</p>

      operationId: resolveLinkedInToHEM
      tags:
        - 👤  Lead Resolution
        - Resolution
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                linkedin_url:
                  type: string
                  description: The person's LinkedIn profile URL.
                callback_url:
                  type: string
                  description: 'URL where the result will be posted asynchronously '
              required:
                - linkedin_url
                - callback_url
              x-apidog-orders:
                - linkedin_url
                - callback_url
            example:
              linkedin_url: https://www.linkedin.com/in/john-doe
              callback_url: https://webhook.site/your-id
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: boolean
                  message:
                    type: string
                required:
                  - data
                  - message
                x-apidog-orders:
                  - data
                  - message
              example:
                success: true
                message: Resolution successfully completed!
                resolution:
                  id: res_64a17cd62747017905c76aa06e98d5f4
                  status: completed
                  requested_at: '2026-05-29T12:42:24.107Z'
                  callback_url: https://webhook.site/your-id
                lead:
                  hashed_emails:
                    - email: 40d8a52f7ba59aa94eed65876da6d249
                      type: md5
                  linkedin_url: linkedin.com/in/john-doe
                payload:
                  email: john@acme.com
                  callback_url: https://webhook.site/your-id
          headers: {}
          x-apidog-name: ''
        default:
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties: {}
          headers: {}
          x-apidog-name: ''
      security: []
      x-apidog-folder: 👤  Lead Resolution
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/1235890/apis/api-31382859-run
components:
  schemas: {}
  securitySchemes:
    bearerAuth:
      type: jwt
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Organization JWT or API key from Core API. Send in header:
        Authorization: Bearer {token}
    sysAuth:
      type: apikey
      in: header
      name: x-sys-key
      description: >-
        System authentication key for internal endpoints. Only for inter-service
        calls.
servers:
  - url: https://api.lead.springbolt.app
    description: Prod Env
security: []

```
