POST BlendComment/PostBlendComment

Creates a new Blend Billing Note record

Request Information

URI Parameters

Body Parameters

Blend Billing Note object used to create a new record in the database.

ClsCommentAdd
NameDescriptionTypeAdditional Information
Comment

The Name of the Billing Note record

string

Required

Max length: 80

Request Formats

application/json, text/json

Sample:
{
  "Comment": "sample string 5"
}

application/xml, text/xml

Sample:
<CommentAdd xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SSI">
  <Comment>sample string 5</Comment>
</CommentAdd>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ClsCommentAdd'.

Response Information

Resource Description

Creates a new Blend Billing Note record

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>