v1

latestOpenAPI 3.0.32026-08-061874701.5 MB
reports

Update report column

Updates the specified column in the report.

put/reports/{reportId}/columns/{columnVirtualId}

Request body

titlestring

Title of a column.

indexinteger

Column index or position. This number is zero-based. Indicates the position of the column in the generated report.

hiddenboolean

Indicates whether the column is hidden.

widthinteger

Display width of the column in pixels.

Response

Returns Result object containing the updated Report column object.

message'PARTIAL_SUCCESS' | 'SUCCESS'

Message that indicates the outcome of the request. (One of SUCCESS or PARTIAL_SUCCESS.)

resultCode0 | 3
  • '0' Success
  • '3' Partial Success of Bulk Operation

Example response

{
  "message": "SUCCESS",
  "result": {
    "type": "PICKLIST",
    "systemColumnType": "CREATED_BY",
    "autoNumberFormat": {
      "fill": "",
      "prefix": "",
      "startingNumber": 1,
      "suffix": ""
    }
  }
}