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

# Delete Row

> Delete a row from a table



## OpenAPI

````yaml /openapi/rest/openapi-v3-Table.json delete /api/v1/Table/{tableName}/{id}
openapi: 3.0.0
info:
  version: v1-REST
  title: SuperOffice REST API v1
  description: SuperOffice REST API - Table
  contact:
    name: SuperOffice DevNet
    url: https://docs.superoffice.com/en/api/index.html
    email: sdk@superoffice.com
servers:
  - url: http://localhost:56350
  - url: https://localhost:56350
security: []
tags: []
externalDocs:
  description: >-
    The SuperOffice DevNet Community has more documentation, examples, and
    discussion forums.
  url: https://community.superoffice.com/en/developer/
paths:
  /api/v1/Table/{tableName}/{id}:
    delete:
      tags:
        - TableRecord
      summary: Delete Row
      description: Delete a row from a table
      operationId: v1TableRecord_DeleteRow
      parameters:
        - name: tableName
          in: path
          description: >-
            The name of the table to delete from; in the current release this
            must be an 'extratable'. Use the database name, on the form y_aTable
          required: true
          schema:
            type: string
        - name: id
          in: path
          description: The id of the row to delete
          required: true
          schema:
            type: integer
            format: int32
        - name: SO-AppToken
          in: header
          description: >-
            The application token that identifies the partner app. Used when
            calling Online WebAPI from a server.
          required: false
          schema:
            type: string
      responses:
        '204':
          description: No Content
      security:
        - SuperOffice_Password: []
          SuperId_Authentication: []
components: {}

````

## Related topics

- [Delete Row](/en/api/reference/restful/agent/databasetable_agent/delete-row.md)
- [Delete](/en/api/reference/restful/agent/databasetable_agent/delete.md)
- [How to update a row in a custom object](/en/api/web-services/howto/custom-objects/rest-delete-custom-object-row.md)
- [SuperOffice.WebApi.Data.DatabaseTable DeleteRowRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.DatabaseTable_DeleteRowRequest.md)
- [SuperOffice.WebApi.Data.UpsertNomatchAction](/en/api/reference/webapi/SuperOffice.WebApi.Data.UpsertNomatchAction.md)
- [Enum UpsertNomatchAction](/en/automation/crmscript/reference/CRMScript.NetServer.UpsertNomatchAction.md)
