The following is an example of a Story:
{
"storyId": 123,
"title": "Jane Eyre",
"storyText": "There was no possibility of taking a walk that day.",
"storyStatus": {
"storyStatusId": 1,
"statusName": "Submitted"
},
"vanId": 1000000000,
"tags": [
{
"codeId": 123,
"codeName": "Book"
}
],
"campaignId": 123456
}
Story
Each Story has the following properties:
Property | Type | Description |
---|---|---|
storyId | int | Unique identifier for a Story in this context |
title | string | The title of the story |
storyText | string | The story content |
storyStatus | object | The status of the story |
vanId | string | The MyCampaignID of the MyCampaign contact record the story belongs to |
tags | array | Optional; an array of zero or more Tags to apply to the Story |
campaignId | int | Optional; unique identifier for a Campaign associated with the story in the system |
Story Status
Each Story Status has the following properties
Property | Type | Description |
---|---|---|
storyStatusId | int | Unique identifier for the status of a Story |
statusName | string | A name given to the status |