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

Perform Re-Group Action

Regroup

post
/apis/stamper/v1/rc_regroup/{source_rc_id}

This API is used to regroup order transaction lines into another existing Revenue Contract or into a new Revenue Contract.

Path parameters
source_rc_idstringRequired

The Source Revenue Contract ID from which user is regrouping the order transaction lines.

Body
source_rc_order_fidsstring[]Required

The unique Order Financial IDs of order transaction lines of source Revenue Contract ID user want to regroup.

commentsstringRequired

Any relevant comments can be added by user at the time of performing regroup action.

target_rcstringOptional

This is optional field. This can be used when user want to regroup order transaction lines into existing Revenue Contract. If user want to move lines to new contract this field cam be skipped from payload.

Responses
200

Regroup

application/json
messagestringRequired

Message generated after successfully completed regroup action.

request_idstringRequired

A system generated alpha-numeric number.

post/apis/stamper/v1/rc_regroup/{source_rc_id}
POST /apis/stamper/v1/rc_regroup/{source_rc_id} HTTP/1.1
Host: {realm}.{env}.rightrev.cloud/
Content-Type: application/json
Accept: */*
Content-Length: 88

{
  "source_rc_order_fids": [
    "ord-001-rc2-01"
  ],
  "comments": "regroup test",
  "target_rc": "RC-2"
}
200

Regroup

{
  "message": "Successfully Initiated Manual Regroup",
  "request_id": "d0fc4304-67f5-4960-ab6c-55192af4bb0a"
}

Last updated

Was this helpful?