Get a single OneTimeMsg
Get a particular OneTimeMsg
object
Parameter
Accessible via URL https://api.channel.io/open/v4/mkt/one-time-msgs/{id}
and HTTP GET
Parameter | Example | Required | Description | Parameter Type |
---|---|---|---|---|
id | 1234 | Required | ID of OneTimeMsg object | Path |
Example
GET https://api.channel.io/open/v4/mkt/one-time-msgs/1234
Response
Returns a OneTimeMsg
object along with related information
{
"oneTimeMsg": {
"id": "string",
"channelId": "string",
"name": "string",
"state": "draft",
"botName": "string",
"message": {
"blocks": [
{
"type": "bullets",
"language": "string",
"value": "string",
"blocks": [
null
]
}
],
"buttons": [
{
"title": "string",
"colorVariant": "cobalt",
"url": "string"
}
],
"files": [
{
"id": "string",
"type": "string",
"name": "string",
"size": 0,
"contentType": "string",
"duration": 0,
"width": 0,
"height": 0,
"orientation": 0,
"animated": true,
"bucket": "string",
"key": "string",
"previewKey": "string",
"channelId": "string",
"chatId": "string",
"chatType": "string"
}
],
"webPage": {
"id": "string",
"url": "string",
"title": "string",
"description": "string",
"imageUrl": "string",
"videoUrl": "string",
"publisher": "string",
"author": "string",
"width": 0,
"height": 0,
"bucket": "string",
"previewKey": "string",
"logo": "string",
"name": "string"
}
},
"exposureType": "fullScreen",
"userQuery": {
"key": "string",
"type": "boolean",
"operator": {},
"values": [
{}
],
"and": [
null
],
"or": [
null
]
},
"goalEventName": "string",
"goalEventQuery": {
"key": "string",
"type": "boolean",
"operator": {},
"values": [
{}
],
"and": [
null
],
"or": [
null
]
},
"enableSupportBot": true,
"followingSupportBotId": "string",
"advertising": true,
"sendToOfflineUser": true,
"startAt": 1624422362761,
"draft": {
"oneTimeMsg": {}
},
"createdAt": 1624422362766,
"updatedAt": 1624422362766,
"sent": 0,
"view": 0,
"goal": 0,
"click": 0,
"userChatExpireDuration": {
"seconds": 0,
"nano": 0,
"units": [
{
"dateBased": true,
"timeBased": true,
"duration": {
"seconds": 0,
"nano": 0,
"zero": true,
"negative": true
},
"durationEstimated": true
}
],
"zero": true,
"negative": true
}
}
}
}
Updated 12 months ago