POST UserNotes/Read

Read user notes for video

Request Information

URI Parameters

None.

Body Parameters

RequestUserNotesRead
NameDescriptionTypeAdditional information
UserID

integer

None.

VideoID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "UserID": 1,
  "VideoID": 2
}

text/html

Sample:
{"UserID":1,"VideoID":2}

application/xml, text/xml

Sample:
<RequestUserNotesRead xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/YogaStreamAPIv2">
  <UserID>1</UserID>
  <VideoID>2</VideoID>
</RequestUserNotesRead>

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 'RequestUserNotesRead'.

Response Information

Resource Description

UserNotes
NameDescriptionTypeAdditional information
Note_UserID

integer

None.

Note_VideoID

integer

None.

Note_DateCreated

string

None.

Note_Text

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Note_UserID": 1,
  "Note_VideoID": 2,
  "Note_DateCreated": "sample string 3",
  "Note_Text": "sample string 4"
}

text/html

Sample:
{"Note_UserID":1,"Note_VideoID":2,"Note_DateCreated":"sample string 3","Note_Text":"sample string 4"}

application/xml, text/xml

Sample:
<UserNotes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/YogaStreamAPIv2">
  <Note_DateCreated>sample string 3</Note_DateCreated>
  <Note_Text>sample string 4</Note_Text>
  <Note_UserID>1</Note_UserID>
  <Note_VideoID>2</Note_VideoID>
</UserNotes>