create a post from an arena
Request
Body Params application/json
{
"type": "chat",
"title": "string",
"description": "string",
"duration": 0,
"startDateTime": "string",
"options": [
{
"text": "string"
}
],
"fileDirPath": "string",
"files": [
{
"sm": {
"mimeType": "string",
"url": "string"
},
"org": {
"mimeType": "string",
"url": "string"
}
}
]
}
Request samples
curl --location --request POST 'https://api.sqabl.com/v1/arena//post' \
--header 'Authorization: Bearer viewer'\''s-access-token' \
--header 'Content-Type: application/json' \
--data-raw '{
"type": "chat",
"title": "string",
"description": "string",
"duration": 0,
"startDateTime": "string",
"options": [
{
"text": "string"
}
],
"fileDirPath": "string",
"files": [
{
"sm": {
"mimeType": "string",
"url": "string"
},
"org": {
"mimeType": "string",
"url": "string"
}
}
]
}'
Responses
application/json {
"data": {
"post": {
"...v2-post": "...props..."
}
}
}
Modified at 2025-07-08 16:04:32