> ## 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.

# Delete Snoozed Contact

> Delete a snoozed contact

Removes a contact from the snoozed list, allowing them to appear in call lists again immediately.

### Path Parameters

* **id** (*required*, string): Snoozed contact ID

### Response

Returns a success message if deleted, or 404 if not found.

```json theme={null}
{
  "message": "Snoozed contact deleted successfully"
}
```


## OpenAPI

````yaml DELETE /v1/snoozed-contacts/{id}
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/{id}:
    delete:
      tags:
        - Snoozed Contacts
      description: Delete a snoozed contact
      operationId: delete-snoozed-contact
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: Snoozed contact ID
      responses:
        '200':
          description: Snoozed contact deleted successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
        '404':
          description: Snoozed contact not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      required:
        - error
        - message
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````