Supporting Documents
This API is to retrieve the file details of supporting document uploaded in Revenue Contract or Manual journal Entry.
This is the type of document. User can provide RC or MJE to fetch the supporting document details.
This is number of revenue contract or manual journal entry.
Get Supporting document list
Name and type of the file uploaded as supporting document.
Size of the supporting document file uploaded.
Timestamp of the policy last modified on. This is a unix Epoch timestamp format.
Name of the user who uploaded supporting document file.
Type of the document uploaded for. Is it supporting document for RC or MJE.
Revenue contract or MJE number.
GET /apis/supporting_doc/v1/lov/{doc_type}/{doc_id} HTTP/1.1
Host: {realm}.{env}.rightrev.cloud/
Accept: */*
Get Supporting document list
[
{
"file_name": "supporting_doc.md",
"file_size": 0.0068359375,
"last_modified": "2026-04-15T21:03:43+00:00",
"user_name": "username@rightrev.com",
"doc_type": "RC",
"doc_id": "RC-134"
}
]This API is to upload the supporting document file in Revenue Contract or Manual journal Entry.
User can upload multiple type of files - pdf, doc, docx, xls, xlsx, txt, rtf, odt, ods, csv, html, htm, md, xml, jpg, jpeg, png.
The Supporting Documents feature is available only to users with the Sysadmin and Revenue Manager roles.
Attach Supporting document file.
Upload Supporting document
System generated message on file upload.
POST /apis/supporting_doc/v1/ HTTP/1.1
Host: {realm}.{env}.rightrev.cloud/
Content-Type: multipart/form-data
Accept: */*
Content-Length: 2
{}Upload Supporting document
{
"message": "Uploaded successfully."
}This API is to retrieve the supporting document file uploaded in Revenue Contract or Manual journal Entry.
This is type of document. User can provide RC or MJE to fetch the supporting document details.
This is number of revenue contract or manual journal entry.
This is the name of supporting document file user want to download.
Download Supporting document
GET /apis/supporting_doc/v1/{doc_type}/{doc_id}/{file_name} HTTP/1.1
Host: {realm}.{env}.rightrev.cloud/
Accept: */*
Download Supporting document
{}This API is to delete the supporting document uploaded in Revenue Contract or Manual journal Entry.
Only the file owner (the user who uploaded the file) can delete their own files.
This is type of document. User can provide RC or MJE to fetch the supporting document details.
This is number of revenue contract or manual journal entry.
This is the name of supporting document file user want to delete.
Delete Supporting document
Display system generates message on delete action.
DELETE /apis/supporting_doc/v1/{doc_type}/{doc_id}/{file_name} HTTP/1.1
Host: {realm}.{env}.rightrev.cloud/
Accept: */*
Delete Supporting document
{
"message": "Deleted successfully."
}Last updated
Was this helpful?

