curl --location -g --request POST 'https:///api/v2/notifications/' \
--header 'Ocp-Apim-Subscription-Key: ' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"user_id": 0,
"org_id": 0,
"agent_id": 0,
"content": "string",
"is_read": true,
"redirection_details": {
"property1": null,
"property2": null
}
}'
{
"success": true,
"message": "string",
"data": {
"id": 0,
"recipient": 0,
"org": 0,
"agent": 0,
"redirection_details": {
"property1": null,
"property2": null
},
"content": "string",
"is_read": true,
"created_on": "2019-08-24T14:15:22Z",
"is_deleted": true
}
}