POST api/v1/staffalertconfigs/getbystaffIds

Get alert configurations given a list of StaffIds

Request Information

URI Parameters

None.

Body Parameters

Collection of integer

Request Formats

application/json, text/json

Sample:
[
  1,
  2
]

Response Information

Resource Description

Collection of StaffAlertsConfigResponseModel
NameDescriptionTypeAdditional 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:51:13.004383-06:00",
    "StaffSubscriptions": [
      {
        "NotificationEventId": 1,
        "TransportTypeId": 2
      },
      {
        "NotificationEventId": 1,
        "TransportTypeId": 2
      }
    ]
  },
  {
    "StaffId": 1,
    "TenantId": "sample string 2",
    "MobileNumber": "sample string 3",
    "CallBeforeText": true,
    "IsUserOptedIn": true,
    "IsMobileValidated": true,
    "MobileValidatedDate": "2026-01-02T21:51:13.004383-06:00",
    "StaffSubscriptions": [
      {
        "NotificationEventId": 1,
        "TransportTypeId": 2
      },
      {
        "NotificationEventId": 1,
        "TransportTypeId": 2
      }
    ]
  }
]