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

SFDC RC Resync & Resend

Sfdc Resync Rc

post
/apis/sfdc-rr-sync/v1/resync-rc

This API is used to re-sync revenue contract which failed sync process in Salesforce

Body
rc_idsstring[]Required

Provide Revenue Contract IDs separated by commas which are failed to sync with Salesforce.

Responses
200

Sfdc Resync Rc

application/json
responsestringRequired

This will display a meeasge of request for re-sync is received or not.

post/apis/sfdc-rr-sync/v1/resync-rc
POST /apis/sfdc-rr-sync/v1/resync-rc HTTP/1.1
Host: {realm}.{env}.rightrev.cloud/
Content-Type: application/json
Accept: */*
Content-Length: 19

{
  "rc_ids": [
    "RC-3"
  ]
}
200

Sfdc Resync Rc

{
  "response": "Request Received"
}

Sfdc Resend Rc

post
/apis/sfdc-rr-sync/v1/resend-rc

This API is used to resend order financial Ids which are not synced.

Body
ofidsstring[]Required

Provide Order Financial IDs which user wants to resend for resync.

Responses
200

Sfdc Resend Rc

application/json
responsestringRequired

Show a success messege on request send.

post/apis/sfdc-rr-sync/v1/resend-rc
POST /apis/sfdc-rr-sync/v1/resend-rc HTTP/1.1
Host: {realm}.{env}.rightrev.cloud/
Content-Type: application/json
Accept: */*
Content-Length: 74

{
  "ofids": [
    "8027i000002givFAAQ",
    "8027i000002givJAAQ",
    "8027i000004gibYAAQ"
  ]
}
200

Sfdc Resend Rc

{
  "response": "Request Received"
}

Last updated

Was this helpful?