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

Re-Allocate

Reallocate

post
/apis/ssp/v1/carves/re-allocate

This API is used to re-allocate Revenue contract into prospective or retrospective allocation method.

Body
rc_idstring[]Required

User need to provide the Revenue Contract ID on which wants to perform Re-Allocation. For e.g. RC-225.

allocation_methodstringRequired

User need to provide treatment. This field supports two values. prospective retrospective.

commentsstringRequired

User can provide any relevant comments.

Responses
200

Reallocation

application/json
file_idstringRequired

A system generated alpha-numeric number.

messagestringRequired

Response Message from the system after performing re-allocation.

post/apis/ssp/v1/carves/re-allocate
POST /apis/ssp/v1/carves/re-allocate HTTP/1.1
Host: {realm}.{env}.rightrev.cloud/
Content-Type: application/json
Accept: */*
Content-Length: 93

{
  "rc_id": [
    "RC-364"
  ],
  "allocation_method": "prospective",
  "comments": "Reallocate to Prospective"
}
200

Reallocation

{
  "file_id": "0ebae8f7-63f8-427b-80ad-771172a1461e",
  "message": "Reallocation Successfully Completed"
}

Last updated

Was this helpful?