> ## 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.

# Update Row

> Update a row in a table



## OpenAPI

````yaml /openapi/rest/openapi-v3-Table.json put /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}:
    put:
      tags:
        - TableRecord
      summary: Update Row
      description: Update a row in a table
      operationId: v1TableRecord_UpdateRow
      parameters:
        - name: tableName
          in: path
          description: >-
            The name of the table to update; 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 update
          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
      requestBody:
        content:
          application/json:
            schema:
              type: object
              additionalProperties:
                type: string
          text/json:
            schema:
              type: object
              additionalProperties:
                type: string
          application/xml:
            schema:
              type: object
              additionalProperties:
                type: string
          text/xml:
            schema:
              type: object
              additionalProperties:
                type: string
          application/x-www-form-urlencoded:
            schema:
              type: object
              additionalProperties:
                type: string
          application/json-patch+json:
            schema:
              type: object
              additionalProperties:
                type: string
          application/merge-patch+json:
            schema:
              type: object
              additionalProperties:
                type: string
        description: >-
          A StringDictionary with the values to update. You do not need to
          specify all the values in the table. The omitted ones will remain
          unchanged
        required: true
      responses:
        '204':
          description: No Content
        '400':
          description: Bad request. Entity to save is not in request body.
      security:
        - SuperOffice_Password: []
          SuperId_Authentication: []
components: {}

````

## Related topics

- [Update Row](/en/api/reference/restful/agent/databasetable_agent/update-row.md)
- [How to update a row in a custom object](/en/api/web-services/howto/custom-objects/rest-update-custom-object-row.md)
- [SuperOffice.WebApi.Data.DatabaseTable UpdateRowRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.DatabaseTable_UpdateRowRequest.md)
- [SuperOffice.WebApi.Agents.DatabaseTableAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.DatabaseTableAgent.md)
- [SuperOffice.WebApi.Agents.IDatabaseTableAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.IDatabaseTableAgent.md)
