Follow the question structure recommended by Dev Bot before submitting your integration questions.
| Field | Type | Required | Description |
|---|---|---|---|
subject | string | Yes | Title of the push notification that will be displayed to the member. |
message | string | Yes | Main message of the notification. |
idMember | int32 | Yes | Identifier of the member who will receive the notification. |
idBranch | int32 | Yes | Identifier of the branch associated with sending the notification. |
htmlContent | string | No | Optional HTML content of the notification, if formatting is needed. |
username:passwordAuthorization: Basic *****************{
"subject": "string",
"message": "string",
"idMember": 0,
"idBranch": 0,
"htmlContent": "string"
}curl --location 'https://evo-integracao-api.w12app.com.br/api/v1/members/push' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json-patch+json' \
--data '{
"subject": "string",
"message": "string",
"idMember": 0,
"idBranch": 0,
"htmlContent": "string"
}'{
"mensagens": [
"string"
]
}