curl --request POST \
--url https://api.example.com/stack/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "<string>",
"overlayColor": "<string>",
"isPublic": true
}
'{
"success": true,
"data": "<unknown>"
}Create a new Stack.
curl --request POST \
--url https://api.example.com/stack/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "<string>",
"overlayColor": "<string>",
"isPublic": true
}
'{
"success": true,
"data": "<unknown>"
}