Skip to main content
POST
/
iser
/
save
/
notification-setting
Save Iser Notification Settings.
curl --request POST \
  --url https://api.example.com/iser/save/notification-setting \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "settings": [
    {
      "notifySettingTypeID": 123,
      "viaEmail": true,
      "viaSMS": true,
      "viaPush": true
    }
  ],
  "languageID": 1,
  "forIserCode": "693981f0-3af4-4ae0-a187-103be5ebc226",
  "forIserID": null
}
'
{
  "success": true,
  "data": "<unknown>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
settings
object[] | null
languageID
integer<int32> | null
default:1
forIserCode
string<uuid>
default:693981f0-3af4-4ae0-a187-103be5ebc226
forIserID
integer<int32> | null

Response

Success

success
boolean
data
unknown