The notifications settings endpoints provide the ability to configure specific notifications settings for each environment. They implement operations to read, update and reset the settings for the environment.
The sequence of SMS/Voice providers in smsProvidersFallbackChain
comprises the notification fallback sequence, in the event of a primary or subsequent provider failing to send the notification.
TwilioPhoneDeliverySettingsId
) as the primary provider, and Ping’s Twilio account as the fallback:{
"restrictions": {
"smsVoiceQuota": {
"daily": 1
}
},
"smsProvidersFallbackChain": [ {TwilioPhoneDeliverySettingsId}, "PINGONE_TWILIO" ]
}
Property | Description |
---|---|
updatedAt |
The time the resource was last updated. |
restrictions.smsVoiceQuota.daily |
The maximum number of SMS and voice notifications that can be sent per user per day.
|
environment.id |
A string that specifies the environment resource’s unique identifier. |
smsProvidersFallbackChain |
A string that specifies a comma-separated list which represents the execution order of different SMS/Voice providers configured for the environment. The providers and their accounts’ configurations are represented in the list by the ID of the corresponding PhoneDeliverySettings resource. The only provider which is not represented by a PhoneDeliverySettingsId is the PingOne Twilio provider. The PingOne Twilio provider is represented by the “PINGONE_TWILIO” string. If the smsProvidersFallbackChain list is empty, an SMS or voice message will be sent using the default Ping Twilio account. Otherwise, an SMS or voice message will be sent using the first provider in the list. If the server fails to queue the message using that provider, it will use the next provider in the list to try to send the message. This process will go on until there are no more providers in the list. If the server failed to send the message using all providers, the notification status is set to FAILED. |
from.name |
A string that specifies the email’s “from” name (relevant when the deliveryMethod is Email). See Note for details. |
from.address |
A string that specifies the email’s “from” address (relevant when the deliveryMethod is Email). This value must be a trusted email address. See Note for details. |
replyTo.name |
A string that specifies the email’s “reply to” name (relevant when deliveryMethod is Email). See Note for details. |
replyTo.address |
A string that specifies the email’s “reply to” address (relevant when deliveryMethod is Email). This value must be a trusted email address. See Note for details. |
Code | Message |
---|---|
200 | Successful operation. |
201 | Successfully created. |
400 | The request could not be completed. |
401 | You do not have access to this resource. |
403 | You do not have permissions or are not licensed to make this request. |
404 | The requested resource was not found. |