> ## Documentation Index
> Fetch the complete documentation index at: https://nayax-44d6e37b-docs-marshall-faq-redistribution.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Driver

> Deletes a driver identified by DriverId from the scheduling system.



## OpenAPI

````yaml /openapi/lynx.yaml delete /v1/Scheduling/drivers
openapi: 3.0.1
info:
  title: Nayax Operational Lynx API
  version: v1
servers:
  - url: https://qa-lynx.nayax.com/operational
security:
  - Authorization: []
paths:
  /v1/Scheduling/drivers:
    delete:
      tags:
        - Scheduling
      summary: Delete Driver
      description: Deletes a driver identified by DriverId from the scheduling system.
      operationId: delete-driver
      parameters:
        - name: DriverId
          in: query
          description: The unique identifier of the driver to be deleted.
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: The details of the deleted driver.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DriverResponseDto'
components:
  schemas:
    DriverResponseDto:
      type: object
      properties:
        Id:
          type: string
          format: uuid
          description: The unique identifier of the driver.
        DistributorId:
          type: integer
          format: int64
          description: The unique identifier of the distributor associated with the driver.
        OperatorId:
          type: integer
          format: int64
          description: The unique identifier of the operator associated with the driver.
        OperatorName:
          type: string
          nullable: true
          description: The name of the operator associated with the driver.
        UserId:
          type: integer
          format: int64
          description: The unique identifier of the user associated with the driver.
        FullName:
          type: string
          nullable: true
          description: The full name of the driver.
        Mobile:
          type: string
          nullable: true
          description: The mobile phone number of the driver.
        Email:
          type: string
          nullable: true
          description: The email address of the driver.
        DriverLicense:
          type: string
          nullable: true
          description: The driver's license number of the driver.
        IdNumber:
          type: string
          nullable: true
          description: The identification number of the driver.
        Img:
          type: string
          nullable: true
          description: The URL to the driver's image.
        DriverStatusId:
          type: integer
          format: int32
          nullable: true
          description: >-
            The status identifier of the driver, indicating their current
            status.
        StartDate:
          type: string
          nullable: true
          description: The date when the driver started working.
        Skills:
          type: array
          items:
            type: integer
            format: int32
          nullable: true
          description: A list of skill identifiers associated with the driver.
        WorkingHours:
          type: string
          nullable: true
          description: The working hours of the driver.
        CreatedBy:
          type: integer
          format: int64
          description: The identifier of the user who created the driver entry.
        CreatedDt:
          type: string
          format: date-time
          description: The date and time when the driver entry was created.
        UpdatedBy:
          type: integer
          format: int64
          nullable: true
          description: The identifier of the user who last updated the driver entry.
        UpdatedDt:
          type: string
          format: date-time
          nullable: true
          description: The date and time when the driver entry was last updated.
      additionalProperties: false
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: Enter your Bearer token. It's required to authenticate API requests.

````