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

# Delete contact

> Delete a contact and their conversations (the platform's standard
contact deletion — same behaviour as the admin API).



## OpenAPI

````yaml https://api.gleap.io/api-docs.json delete /s2s/contacts/{userId}
openapi: 3.0.0
info:
  title: gleap-server
  version: 14.0.0
  contact: {}
servers:
  - url: https://api.gleap.io/v3
security: []
paths:
  /s2s/contacts/{userId}:
    delete:
      tags:
        - S2S Contacts
      summary: Delete contact
      description: |-
        Delete a contact and their conversations (the platform's standard
        contact deletion — same behaviour as the admin API).
      operationId: Remove
      parameters:
        - in: path
          name: userId
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                properties:
                  status:
                    type: string
                required:
                  - status
                type: object
      security:
        - s2s: []
components:
  securitySchemes:
    s2s:
      type: http
      scheme: bearer
      bearerFormat: Service account token (JWT)

````