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

# Delete organisations data mappings entries

> Delete a DataMappingEntry by ID in the current organisation and mapping.




## OpenAPI

````yaml delete /organisations/{organisationId}/data-mappings/{mappingId}/entries/{entryId}
openapi: 3.0.3
info:
  title: Switchboard API
  description: >-
    The Switchboard API provides users the ability to manage their Apps,
    Integrations and Workflows
  version: 0.0.1-alpha.0
servers:
  - url: https://platform.versori.com/api/switchboard/v1alpha1/
    description: Production server
  - url: http://localhost:8080/v1alpha1/
    description: Localhost
security:
  - apiKey: []
paths:
  /organisations/{organisationId}/data-mappings/{mappingId}/entries/{entryId}:
    delete:
      tags:
        - data-mappings
      description: |
        Delete a DataMappingEntry by ID in the current organisation and mapping.
      operationId: DeleteDataMappingEntry
      parameters:
        - name: organisationId
          in: path
          required: true
          schema:
            type: string
          example: '101'
        - name: mappingId
          in: path
          required: true
          schema:
            type: string
        - name: entryId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          $ref: '#/components/responses/DeleteDataMappingEntryResponse'
        default:
          $ref: '#/components/responses/ErrorResponse'
components:
  responses:
    DeleteDataMappingEntryResponse:
      description: >
        DeleteDataMappingEntryResponse is returned after deleting a
        DataMappingEntry.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/DeletedResource'
    ErrorResponse:
      description: The default error response
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    DeletedResource:
      type: object
      properties:
        id:
          type: string
    Error:
      type: object
      properties:
        code:
          type: string
        message:
          type: string
        extensions:
          type: object
      required:
        - code
        - message
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: Authorization

````