post_message
POST /messages
Create a message
POST /api/v1/messages
{
"data": {
"type": "messages",
"attributes": {
"text": "Great store!",
"is_note": false,
"sender_email": "email@example.com"
},
"relationships": {
"answer_set": {
"data": { "id": "ANSWER-SET-UUID", "type": "answer_sets" }
}
}
}
}
attributes
| attribute | description |
|---|---|
| text string | message text |
| is_note boolean | equal "true" if the message is a note |
| sender_email string | message author email |
relationships
| relationship | description |
|---|---|
| answer_sets | message answer_set |