• Share
    • Twitter
    • LinkedIn
    • Facebook
    • Email
  • Feedback
  • Edit
Show / Hide Table of Contents

How to update a row in a custom object

Audience:
api
•
Version: 10
Some tooltip text!
• 1 minute to read
 • 1 minute to read

Request

  • HTTP RPC Agent
  • RESTful REST

To delete a row using the DatabaseTable agent, specify the TableName and Id as body parameters.

POST https://{{env}}.superoffice.com/{{tenant}}/api/v1/Agents/DatabaseTable/DeleteRow HTTP/1.1
Authorization: Bearer {{token}}
Accept: application/json; charset=utf-8
Content-Type: application/json
{
    "TableName": "y_equipment",
    "Id": "2"
}

For details, see the DatabaseTable agent reference.

To delete a record using the TableRecord endpoint, specify the table name and row ID as query string parameters.

DELETE  https://{{env}}.superoffice.com/{{tenant}}/api/v1/Table/y_equipment/3 HTTP/1.1
Authorization: Bearer {{token}}
Accept: application/json; charset=utf-8
Content-Type: application/json

For details, see the Table REST endpoint reference.

Response

HTTP/1.1 204 No Content
In This Article
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top