Create Document Review Comments

Adds a comment to the specified document.

Resource Information

Scopedocuments

Deprecated scope name:   create_documentreview_documents_comments

App TypeAgency
Authorization TypeAccess token
URI /v4/documentReview/documents/{documentId}/comments?fields={fields}&lang={lang}
HTTP MethodPOST
Automation Version(s)7.3.3.5

Request Information

Field or ParameterTypeRequiredValuesDescriptionAutomation Version
commentstringNoComments or notes about the document.7.3.3.5
createdBystringNoThe unique user id of the individual who created the comment.7.3.3.5
createdDatedateTimeNoThe date the comment was created.7.3.3.5
disciplinediscipline{}NoThe inspection discipline related to the document review.7.3.3.5
discipline.textstringNoThe localized display text.7.3.2
discipline.valuestringNoThe value for the specified parameter.7.3.2
idlongNoThe unique identifier for the object, assigned by the Civic Platform server and provided in a response.7.3.3.5
pageNumberLongNoThe document page number the comment applies to.7.3.3.5
statusstatus{}NoThe document comment status.7.3.3.5
status.textstringNoThe localized display text.7.3.2
status.valuestringNoThe value for the specified parameter.7.3.2
documentIdstringYesThe document ID.7.3.2
fieldsstringNoComma-delimited names of fields to be returned in the response. Note: Field names are case-sensitive and only first-level fields are supported. Invalid field names are ignored.7.3.2
langStringNoIndicates the language applied.7.3.2

Example

Sample Request Head

POST https://apis.accela.com/v4/documentReview/documents/154694/comments

Sample Request Body

{
  "comment": "Need more info.",
  "pageNumber": 2,
  "status": {
    "value": "Closed",
    "text": ""
  },
  "discipline": {
    "value": "Electricity",
    "text": ""
  },
  " createdDate ": "04/29/2015",
  " createdBy ": "System Admin"
}

Response Information

FieldTypeDescriptionAutomation Version
resultresult{}7.3.2
result.codestringA code identifying an associated item7.3.2
result.idstringThe unique identifier for the object, assigned by the Civic Platform server and provided in a response.7.3.2
result.isSuccessbooleanIndicates whether or not the operation on the item is successful. 7.3.2
result.messagestringA text message related to the operation.7.3.2
statusintegerThe record status.7.3.3

Example

Sample Response Body

{
  "result": {
    "id": 14483
  },
  "status": 200
}