WsLiveNote
Returns live notes for live projects
URL Format
/ws/ws_live_note/api/{app_token}/mode/json/apiv/5/le/{live project uuid}/t/{type}/ln{live note id}
Parameters
Name |
Req |
Type |
Description |
app_token |
|
string |
The api token for the given account. You can find the api token when navigating through account->api accounts |
apiv |
|
integer |
The api version; only version 5 supported. |
le |
|
string |
liveEvent uuid |
t |
|
string |
type of live note to retrieve. Valid values are: pre,post. Filters live notes based on either pre event or post event. |
ln |
|
int |
specific liveNote id, will overwrite type param |
Request Headers
Possible Responses
- 225 Live notes found
- 226 No live notes found
- 319 Invalid Live Project uuid
- 815 Invalid type param. Valid values: pre,post
- 102 Invalid app token
Example Response
{
"response": {
"success": {
"code": 225,
"message": "Live notes found",
"details": ""
},
"WsLiveNote": {
"liveNotes": [
{
"id": 1,
"liveEventId": 1,
"userId": 3333,
"dateAdded": "2014-07-23T17:58:50Z",
"type": "pre",
"status": "1",
"notes": "le good"
},
{
"id": 2,
"liveEventId": 1,
"userId": 3333,
"dateAdded": "2014-07-23T23:58:50Z",
"type": "post",
"status": "1",
"notes": "le rly good"
}
]
}
}
}