Request Information

URI Parameters

NameDescriptionTypeAdditional information
appId

The application identifier.

integer

None.

Body Parameters

None.

Response Information

Resource Description

The credit comment.

Collection of Nano.CreditComment
NameDescriptionTypeAdditional information
id

Gets or sets the credit comment identifier.

integer

None.

creditHistory

Gets or sets the credit history identifier.

integer

None.

comment

Gets or sets the comment.

string

None.

flaggedComment

Gets or sets the flagged comment.

string

None.

isFlagged

Gets or sets a value indicating whether this is flagged.

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": "1",
    "creditHistory": "1",
    "comment": "sample String 2",
    "flaggedComment": "sample String 3",
    "isFlagged": true
  },
  {
    "id": "1",
    "creditHistory": "1",
    "comment": "sample String 2",
    "flaggedComment": "sample String 3",
    "isFlagged": true
  }
]

text/html

Sample:
[{"id":"1","creditHistory":"1","comment":"sample String 2","flaggedComment":"sample String 3","isFlagged":true},{"id":"1","creditHistory":"1","comment":"sample String 2","flaggedComment":"sample String 3","isFlagged":true}]

application/xml, text/xml

Sample:
<ArrayOfCreditComment xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <CreditComment>
    <CreditCommentId>1</CreditCommentId>
    <CreditHistoryId>1</CreditHistoryId>
    <Comment>sample String 2</Comment>
    <FlaggedComment>sample String 3</FlaggedComment>
    <IsFlagged>true</IsFlagged>
  </CreditComment>
  <CreditComment>
    <CreditCommentId>1</CreditCommentId>
    <CreditHistoryId>1</CreditHistoryId>
    <Comment>sample String 2</Comment>
    <FlaggedComment>sample String 3</FlaggedComment>
    <IsFlagged>true</IsFlagged>
  </CreditComment>
</ArrayOfCreditComment>

application/vnd.api+json

Sample:

Sample not available.