POST messages
POST /messages
Publishes content from a given persona on a given channel to given player(s).
You will need to use GET personas and GET teams to have the required data.
Headers
Content-Type
application/json
Authorization
Bearer <token>
Body
{
"persona": "3-49786",
"channel": "mail",
"subject": "Great Win",
"body": "Congrats on securing Conducttr as the season's sponsor!",
"to": "james.wardprowse@hammers.co.uk",
"cc": "sally@theoffice.com, mark.jones@uptonpark.co.uk",
"bcc": "newhamrecorder@eastham.gov.uk
"sentiment": "positive",
"team_id": "3437866",
"type": "team",
"ts": 1738686056
}{
"persona": "3-49786",
"channel": "websites",
"title": "New World Order",
"subtitle": "i'm a subtitle",
"body": "message body to team",
"to": "6981039fa6ef12.39280090@tstoryteller.com",
"assets": [
{
"type": "image",
"assetUrl": "https://conducttr-a.akamaihd.net/fa/2306/06/22474/2023-06-06-12-15-47.png",
"alt": ""
},
{
"type": "video",
"assetUrl": "https://conducttr-a.akamaihd.net/v/2305/p/51001/syrian-refugee-crisis-pl.m3u8",
"alt": ""
}
],
"sentiment": "positive",
"team_id": 3437872,
"type": "team",
"isDraft": 0,
"ts": 1738686056
}persona
string
persona_id of the sending persona
player_email
email address
if present then message is sent to the player with that email address
channel
string
which channel the message should be published on
title
string
required for website article
subject
string
message subject (if it has one)
body
string
the message body
to
string
required if to a single person
assets
list of asset objects
see asset object below
sentiment
string
positive I negative I neutral this is for social media
type
string
individual I team
ts
unix timestamp
message timestamp
isDraft
boolean
1 or 0
replies
integer
number of comments or replies to post
likes
integer
number of likes
reposts
integer
number of reposts/shares
is_hacked
integer
1 = hack the website, 0 = restore the website
show_details
integer
1 = show website details, 0 = hide website details
hacked_image
url
url to the image to display instead of the website when hacked
Asset object
type
string
image I video I audio I document
assetUrl
string
must be URL to the hosted asset
alt
string
description of asset
Response
Last updated
Was this helpful?