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

# Delete Profile

> Deletes a profile from the GetProfile API by its ID



## OpenAPI

````yaml DELETE /v1/profile/{id}
openapi: 3.1.0
info:
  title: GetProfile API
  description: >-
    GetProfile API is a profiling service powered by AI. It allows users to
    submit their data and receive a profile based on that data. The API provides
    endpoints for creating, retrieving, and deleting profiles.
  termsOfService: https://getprofile-ai.com/terms
  version: 1.0.0
servers:
  - url: https://api.getprofile-ai.com
security:
  - bearerAuth: []
paths:
  /v1/profile/{id}:
    delete:
      description: Deletes a profile record by id
      parameters:
        - name: id
          in: path
          description: ID of profile to delete
          required: true
          schema:
            type: string
      responses:
        '204':
          description: Profile deleted
          content: {}
        '400':
          description: unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````