GET BlendComment/GetBlendComment?commentSearch={commentSearch}&commentSearchType={commentSearchType}

Returns a list of Billing Notes.

Request Information

URI Parameters

NameDescriptionTypeAdditional Information
commentSearch

The value to search Comments for. (Optional)

string

Default value is string.Empty

commentSearchType

How to search the Comment records. (Optional)

MatchStringEnum

Default value is StartsWith

Body Parameters

Response Information

Resource Description

Returns a list of Billing Notes.

AgvBlendComment
NameDescriptionTypeAdditional Information
Status

Status of the API call.

string
Message

Message of the API call.

string
Count

Count of how many Blend Comment JSON dictionaries.

string
BlendCommentList

JSON dictionary of Blend Comment

Collection of ClsComment

Response Formats

application/json, text/json

Sample:
{
  "Status": "sample string 1",
  "Message": "sample string 2",
  "Count": "2",
  "BlendCommentList": [
    {
      "UniqueId": "sample string 6",
      "Comment": "sample string 7"
    },
    {
      "UniqueId": "sample string 6",
      "Comment": "sample string 7"
    }
  ]
}

application/xml, text/xml

Sample:
<AgvBlendComment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgvWebAPICSharp.Models.Blend">
  <BlendCommentList xmlns:d2p1="http://schemas.datacontract.org/2004/07/SSI">
    <d2p1:Comment>
      <d2p1:Comment>sample string 7</d2p1:Comment>
      <d2p1:UniqueId>sample string 6</d2p1:UniqueId>
    </d2p1:Comment>
    <d2p1:Comment>
      <d2p1:Comment>sample string 7</d2p1:Comment>
      <d2p1:UniqueId>sample string 6</d2p1:UniqueId>
    </d2p1:Comment>
  </BlendCommentList>
  <Message>sample string 2</Message>
  <Status>sample string 1</Status>
</AgvBlendComment>