Control custom Meta data on a post level.
…………………………………………………………………………………………………………………..
Adding meta to a post
This creates a new post/content within your event
POST URL: https://api.scribblelive.com/v1/post?auth={your auth}&token={your token}
Path Parameters:
NAME | REQUIRED | TYPE | DESCRIPTION |
Token | true | string | A valid ScribbleLive API token Found on the Admin > API page of your ScribbleLive account. |
Auth | true | string | An authentication key will last for a up to 2 hours or until the user’s password is changed. See here to on how to get an auth. |
Thread Id | true | integer | The Stream ID to save the post to,
“ThreadId”: 1234567890 |
PostMeta | – | object | JSON object containing any Raw Data you may want to include,
“PostMeta”: { |
…………………………………………………………………………………………………………………..
Responses
200
Example application/json
{
"Id": 99999999999,
"Rank": 0,
"Type": "TEXT",
"Creator": {
"Id": 0987654321,
"Name": "David Z",
"Avatar": "http://avatars.somewhereoutthere.png"
},
"PostMeta": {
"raw_date": 0,
"raw_data2": 2,
"random_field": true,
"Source": "api",
"CreationDate": 1467384849
},
"CreatorUser": {
"Id": 1234567,
"Name": "David Z",
"Thumbnail": "http://avatars.somewhereoutthere.png"
},
"StreamId": 1234567890,
"EventId": 1234567890,
"Syndicated": true
}