listNotifyCountries

Lists countries that support notify messaging. You can optionally filter by channel, use case, or tier.

Samples

// List countries that support notify messaging over SMS.
val resp = pinpointSmsVoiceV2Client.listNotifyCountries {
    channels = listOf<NumberCapability>(
        NumberCapability.fromValue("SMS")
    )
    maxResults = 10
}