GET api/v1/staffalertconfigs/{staffId}
Get a staff's alert configuration
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| staffId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
StaffAlertsConfigResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| StaffId | integer |
None. |
|
| TenantId | string |
None. |
|
| MobileNumber | string |
None. |
|
| CallBeforeText | boolean |
None. |
|
| IsUserOptedIn | boolean |
None. |
|
| IsMobileValidated | boolean |
None. |
|
| MobileValidatedDate | date |
None. |
|
| StaffSubscriptions | Collection of StaffSubscriptionDetail |
None. |
Response Formats
application/json, text/json
Sample:
{
"StaffId": 1,
"TenantId": "sample string 2",
"MobileNumber": "sample string 3",
"CallBeforeText": true,
"IsUserOptedIn": true,
"IsMobileValidated": true,
"MobileValidatedDate": "2026-01-02T21:50:08.490374-06:00",
"StaffSubscriptions": [
{
"NotificationEventId": 1,
"TransportTypeId": 2
},
{
"NotificationEventId": 1,
"TransportTypeId": 2
}
]
}