> ## Documentation Index
> Fetch the complete documentation index at: https://docs.salesfinity.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Snoozed Contact by LinkedIn

> Get a snoozed contact by LinkedIn username

Retrieves a snoozed contact by their LinkedIn username. Useful for checking if a specific LinkedIn profile is currently snoozed.

### Path Parameters

* **username** (*required*, string): LinkedIn username to look up

### Response

Returns the snoozed contact if found, or 404 if not found.

**Response fields:**

* `_id` - Unique identifier
* `team` - Team ID
* `user` - User who snoozed the contact
* `linkedin_username` - LinkedIn username
* `external_contact_id` - External CRM contact ID
* `email` - Email address
* `phone_number` - Phone number
* `snooze_until` - Date when snooze expires
* `createdAt` - Creation timestamp
* `updatedAt` - Last update timestamp


## OpenAPI

````yaml GET /v1/snoozed-contacts/by-linkedin/{username}
openapi: 3.0.1
info:
  title: Salesfinity API
  description: API documentation for Salesfinity platform
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://client-api.salesfinity.co
security:
  - ApiKeyAuth: []
paths:
  /v1/snoozed-contacts/by-linkedin/{username}:
    get:
      tags:
        - Snoozed Contacts
      description: Get a snoozed contact by LinkedIn username
      operationId: get-snoozed-contact-by-linkedin
      parameters:
        - name: username
          in: path
          required: true
          schema:
            type: string
          description: LinkedIn username
      responses:
        '200':
          description: Snoozed contact retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SnoozedContactDTO'
        '404':
          description: Snoozed contact not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    SnoozedContactDTO:
      type: object
      properties:
        _id:
          type: string
          description: Unique identifier
        team:
          type: string
          description: Team ID
        user:
          $ref: '#/components/schemas/UserDTO'
        contact_list:
          type: string
          description: Contact list ID
        linkedin_username:
          type: string
          description: LinkedIn username
        external_contact_id:
          type: string
          description: External CRM contact ID
        email:
          type: string
          description: Email address
        phone_number:
          type: string
          description: Phone number
        snooze_until:
          type: string
          format: date-time
          description: Snooze expiration date
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      required:
        - _id
        - team
        - phone_number
        - snooze_until
    Error:
      type: object
      required:
        - error
        - message
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string
    UserDTO:
      type: object
      properties:
        _id:
          type: string
        email:
          type: string
        first_name:
          type: string
        last_name:
          type: string
      required:
        - _id
        - email
        - first_name
        - last_name
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````