GET Artwork/MasterComments

Retrieves master comments. [retrieveMasterComments]

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of MasterInternalComment
NameDescriptionTypeAdditional information
MasterCommentId

integer

None.

CommentShortName

string

None.

Category

string

None.

CommentText

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "MasterCommentId": 1,
    "CommentShortName": "sample string 2",
    "Category": "sample string 3",
    "CommentText": "sample string 4"
  },
  {
    "MasterCommentId": 1,
    "CommentShortName": "sample string 2",
    "Category": "sample string 3",
    "CommentText": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfMasterInternalComment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Img.MyiCLC.Mobile.Api.Models.DataObjects.Artwork">
  <MasterInternalComment>
    <Category>sample string 3</Category>
    <CommentShortName>sample string 2</CommentShortName>
    <CommentText>sample string 4</CommentText>
    <MasterCommentId>1</MasterCommentId>
  </MasterInternalComment>
  <MasterInternalComment>
    <Category>sample string 3</Category>
    <CommentShortName>sample string 2</CommentShortName>
    <CommentText>sample string 4</CommentText>
    <MasterCommentId>1</MasterCommentId>
  </MasterInternalComment>
</ArrayOfMasterInternalComment>