Follow the question structure recommended by Dev Bot before submitting your integration questions.
This endpoint allows sending push notifications to multiple members simultaneously. The notification can contain a title, message, and optional HTML content, directed to a specific list of members from a branch.
| Field | Type | Required | Description |
|---|---|---|---|
| subject | string | Yes | Title of the push notification. |
| message | string | Yes | Main message of the notification. |
| idMembers | array | Yes | List of IDs of the members who will receive the notification. |
| idBranch | int32 | Yes | ID of the branch associated with sending the notification. |
| htmlContent | string | No | Optional HTML content for notifications with advanced formatting. |
username:passwordAuthorization: Basic *****************{
"subject": "string",
"message": "string",
"idMembers": [
0
],
"idBranch": 0,
"htmlContent": "string"
}curl --location 'https://evo-integracao-api.w12app.com.br/api/v1/members/multiple-push' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json-patch+json' \
--data '{
"subject": "string",
"message": "string",
"idMembers": [
0
],
"idBranch": 0,
"htmlContent": "string"
}'{
"mensagens": [
"string"
]
}