curl --request POST \
--url https://prod01.oms.fabric.inc/api/v2/notification/send \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'tenant-key: <tenant-key>' \
--data '
{
"id": "<string>",
"notificationType": "<string>",
"documentType": "<string>",
"overrideContactInfo": [
{
"name": {
"first": "John",
"middle": "Middle",
"last": "Doe"
},
"email": "[email protected]",
"phone": {
"number": "55555555555",
"type": "MOBILE"
}
}
]
}
'