POST api/NTPatientScheduling/SendNotificationProvider
Request Information
URI Parameters
None.
Body Parameters
SendProviderNotificationDto| Name | Description | Type | Additional information |
|---|---|---|---|
| NotificationTypeId | integer |
None. |
|
| ProviderId | integer |
None. |
|
| ProviderEmail | string |
String length: inclusive between 0 and 50 |
|
| ProviderCellPhone | string |
String length: inclusive between 0 and 20 |
|
| PatientName | string |
String length: inclusive between 0 and 200 |
|
| CaseNo | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"NotificationTypeId": 1,
"ProviderId": 2,
"ProviderEmail": "sample string 3",
"ProviderCellPhone": "sample string 4",
"PatientName": "sample string 5",
"CaseNo": 6
}
application/xml, text/xml
Sample:
<SendProviderNotificationDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.BL"> <CaseNo>6</CaseNo> <NotificationTypeId>1</NotificationTypeId> <PatientName>sample string 5</PatientName> <ProviderCellPhone>sample string 4</ProviderCellPhone> <ProviderEmail>sample string 3</ProviderEmail> <ProviderId>2</ProviderId> </SendProviderNotificationDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
AsapResponseOfSendProviderNotificationDto| Name | Description | Type | Additional information |
|---|---|---|---|
| isSuccess | boolean |
None. |
|
| message | string |
None. |
|
| jsonObj | SendProviderNotificationDto |
None. |
|
| totalCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"isSuccess": true,
"message": "sample string 2",
"jsonObj": {
"NotificationTypeId": 1,
"ProviderId": 2,
"ProviderEmail": "sample string 3",
"ProviderCellPhone": "sample string 4",
"PatientName": "sample string 5",
"CaseNo": 6
},
"totalCount": 3
}
application/xml, text/xml
Sample:
<AsapResponseOfSendProviderNotificationDto3NYuOdgi xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.Common">
<isSuccess>true</isSuccess>
<jsonObj xmlns:d2p1="http://schemas.datacontract.org/2004/07/ASAP_BL.BL">
<d2p1:CaseNo>6</d2p1:CaseNo>
<d2p1:NotificationTypeId>1</d2p1:NotificationTypeId>
<d2p1:PatientName>sample string 5</d2p1:PatientName>
<d2p1:ProviderCellPhone>sample string 4</d2p1:ProviderCellPhone>
<d2p1:ProviderEmail>sample string 3</d2p1:ProviderEmail>
<d2p1:ProviderId>2</d2p1:ProviderId>
</jsonObj>
<message>sample string 2</message>
<totalCount>3</totalCount>
</AsapResponseOfSendProviderNotificationDto3NYuOdgi>