8 API Reference‎ > ‎Resources‎ > ‎

Comment

NOTE: Used only in Submission API.

Represents a comment to an offer.

Attributes:
  • id string.
  • author_name string.
  • content string.
  • created_at time.
  • attachments list of Attachment.

Data Example

JSON

{
    "id": "",
    "author_name": "",
    "content": "",
    "created_at": "",
    "attachments": [Attachment, ...]
}

XML

<comment>
    <id></id>
    <author_name></author_name>
    <content></content>
    <created_at></created_at>
    <attachments>
        <attachment>Attachment</attachment>
        ...
    </attachments>
</comment>

Actions

Create Comment


POST /offers/:id/comments

Update Comment


PUT /offers/:id/comments/:id

Delete Comment

DELETE /offers/:id/comments/:id


Comments