MeWe Settings
Provider settings for MeWe posts
What MeWe supports in Postiz
Character limits, media rules and how these settings appear in the app.
Overview
MeWe posts go either to your own timeline or to a group you belong to.
Settings Schema
{
"__type": "mewe",
"postType": "timeline"
}Properties
| Property | Type | Required | Description |
|---|---|---|---|
__type | string | ✅ | Must be "mewe" |
postType | string | ✅ | timeline or group |
group | string | Conditional | Group ID. Required when postType is group |
postType
| Value | Description |
|---|---|
timeline | Post to your own MeWe timeline |
group | Post to a group. group must then hold the group's ID |
group takes the group ID, not its name. Select the group once in the
Postiz composer to find the ID, then reuse it over the API.
Examples
Post to your timeline
{
"type": "now",
"date": "2024-12-14T10:00:00.000Z",
"shortLink": false,
"tags": [],
"posts": [
{
"integration": { "id": "your-mewe-integration-id" },
"value": [
{ "content": "Hello from Postiz", "image": [] }
],
"settings": {
"__type": "mewe",
"postType": "timeline"
}
}
]
}Post to a group
{
"type": "schedule",
"date": "2024-12-14T10:00:00.000Z",
"shortLink": false,
"tags": [],
"posts": [
{
"integration": { "id": "your-mewe-integration-id" },
"value": [
{ "content": "Sharing this with the group", "image": [] }
],
"settings": {
"__type": "mewe",
"postType": "group",
"group": "your-group-id"
}
}
]
}