POST Api/USERS?userid={userid}&alertType={alertType}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userid | string |
Required |
|
| alertType | integer |
Default value is 0 |
Body Parameters
BroadcastEmail| Name | Description | Type | Additional information |
|---|---|---|---|
| InternalUsers | boolean |
None. |
|
| BroadcastMessage | string |
None. |
|
| attachments | Collection of EmailAttachment |
None. |
|
| broadcastid | globally unique identifier |
None. |
|
| appendSignature | boolean |
None. |
|
| BroadcastSubject | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"InternalUsers": true,
"BroadcastMessage": "sample string 2",
"attachments": [
{
"LastModifiedDate": "2026-03-22T13:47:03.3789267+00:00",
"Name": "sample string 2",
"Size": 3,
"StageName": "sample string 4",
"Type": "sample string 5"
},
{
"LastModifiedDate": "2026-03-22T13:47:03.3789267+00:00",
"Name": "sample string 2",
"Size": 3,
"StageName": "sample string 4",
"Type": "sample string 5"
}
],
"broadcastid": "4fca3668-cb1b-4370-abdb-9768d0ec3fb9",
"appendSignature": true,
"BroadcastSubject": "sample string 4"
}
text/xml
Sample:
<BroadcastEmail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/njdotAPI.Controllers.Security">
<BroadcastMessage>sample string 2</BroadcastMessage>
<BroadcastSubject>sample string 4</BroadcastSubject>
<InternalUsers>true</InternalUsers>
<appendSignature>true</appendSignature>
<attachments xmlns:d2p1="http://schemas.datacontract.org/2004/07/HNTB.AWS.SES">
<d2p1:EmailAttachment>
<d2p1:LastModifiedDate>2026-03-22T13:47:03.3789267+00:00</d2p1:LastModifiedDate>
<d2p1:Name>sample string 2</d2p1:Name>
<d2p1:Size>3</d2p1:Size>
<d2p1:StageName>sample string 4</d2p1:StageName>
<d2p1:Type>sample string 5</d2p1:Type>
</d2p1:EmailAttachment>
<d2p1:EmailAttachment>
<d2p1:LastModifiedDate>2026-03-22T13:47:03.3789267+00:00</d2p1:LastModifiedDate>
<d2p1:Name>sample string 2</d2p1:Name>
<d2p1:Size>3</d2p1:Size>
<d2p1:StageName>sample string 4</d2p1:StageName>
<d2p1:Type>sample string 5</d2p1:Type>
</d2p1:EmailAttachment>
</attachments>
<broadcastid>4fca3668-cb1b-4370-abdb-9768d0ec3fb9</broadcastid>
</BroadcastEmail>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |