For the complete documentation index, see llms.txt. This page is also available as Markdown.

Edit Lines

Edit Order Lines

patch
/apis/genie/v1/edit-order-lines

This API is used to edit custom fields data on revenue contract lines.

Body
rc_idstringRequired

Provide revenue contract ID

edit_commentsstringRequired

provide comments to be added for edit lines

Responses
200

Edit Custom Fields on Order Lines

application/json
messagestringRequired

Displays the outcome of the action. It is commonly used to provide success confirmations, error details, or other informational responses from the API after the operation is executed.

patch/apis/genie/v1/edit-order-lines
PATCH /apis/genie/v1/edit-order-lines HTTP/1.1
Host: {realm}.{env}.rightrev.cloud/
Content-Type: application/json
Accept: */*
Content-Length: 157

{
  "rc_id": "RC-9465",
  "edit_comments": "test",
  "line_edits": {
    "OID00021": {
      "new_value": {
        "custom_string_field": "test1"
      },
      "old_value": {
        "custom_string_field": "test"
      }
    }
  }
}
200

Edit Custom Fields on Order Lines

{
  "message": "Lines Updated Successfully"
}

Last updated

Was this helpful?