Amazon Pinpoint is AWS’s Digital User Engagement Service that enables AWS customers to effectively communicate with their end users and measure user engagement across multiple channels including email, Text Messaging (SMS) and Mobile Push Notifications.
Questions tagged [aws-pinpoint]
249 questions
0
votes
1 answer
Accessing an event's atttributes in AWS Pinpoint Campaign email template
I have an AWS Pinpoint application.
On the web app front-end, I can trigger an event as follows:
await record('my.event', {
attributes: { color: 'red', size: 'large' },
immediate: true
})
In Pinpoint, I can create a…

good1492
- 161
- 1
- 10
0
votes
1 answer
AWS Pinpoint campaign does not send notification messages to device
I have created a segment in AWS Pinpoint and i add device token to AWS Pinpoint through java code and the same reflects in AWS Console also.I have created a Campaign and attached this segment to my campaign but my device dont recieve push…

Sanjay Naik
- 264
- 1
- 4
- 23
0
votes
1 answer
Lambda sending notifications via pinpoint is very unreliable, how do I fix this?
I'm trying to send a GCM notification from an AWS lambda function.
I have two questions:
What permissions does the exection role require?
Is the behavioud described below the best I can expect from AWS notification, do I need to look at another…

readysteadygo2006
- 43
- 1
- 3
0
votes
1 answer
AWS Pinpoint APNSChannel enabling through Cloudfomration
I am trying to enable APNSChannel on Pinpoint using CloudFormation template and I am using key credentials for configuration.
I added Authentication key , which is .p8 file, as txt in this format:
-----BEGIN PRIVATE…

Alex
- 97
- 8
0
votes
0 answers
Why did AWS Pinpoint not deliver all my campaigns email messages?
Using the AWS console we sent a manual email campaign to a segment of 1000 users.
Looking at the campaign delivery metrics the day after the send, I have the following stats:
1,000 Messages sent
207 Messages delivered
20.7% Delivery rate
0.97%…

alexmcfarlane
- 1,016
- 2
- 13
- 33
0
votes
0 answers
AWS Pinpoint fails to send emails to SignInWithApple users
I am using AWS Cognito to manage my user pools. Users can signup using email, Apple, Facebook & Google.
Email registered users are required to confirm their account (through email verification). I want to have the same behaviour for social signup…

Merouane T.
- 746
- 1
- 10
- 14
0
votes
1 answer
amplify pin point Opted-in endpoints 0 for flutter app
I have added push notifications with pin point and FCM. It works fine on test device.
I am seeing two end points but when I am creating a campaign the Opted-in endpoints 0 endpoints
Why is this zero , how can I send push notification to these…

pencil
- 33
- 4
0
votes
0 answers
Send DynamoDB events to Pinpoint
I have a web app with a serverless backend using API Gateway, Lambda and DynamoDB. In the app, a user can create/delete items. I want to use Pinpoint to know the total number of items created or deleted.
Right now, when a user creates/deletes a new…

adetoola
- 716
- 1
- 9
- 19
0
votes
1 answer
Amplify/Cognito no analytics data showing in Pinpoint
No data from my user events is showing up in pinpoint.
I have a frontend react native app which uses the Amplify Auth library configured as:
Amplify.configure({
Analytics: {
AWSPinpoint: {
region: ENV.REGION,
…

xtra
- 1,957
- 4
- 22
- 40
0
votes
1 answer
Using one APNS push service certificate for two different AWS pinpoint instances
I have two AWS pinpoints. Each for different environment one for production, and one for development. We need separate pinpoints as we need also to test new features such as new type push notification or other custom metrics on development before…

bayu
- 3
- 2
0
votes
0 answers
AWS Pinpoint see submitted records
I have integrated AWS Pinpoint in my web app but I can't find the submitted records anywhere in the Pinpoint dashboard.
This is how I'm sending a record:
await Analytics.record({
name: 'Login',
user: 'test',
})
the response looks like…

Valip
- 4,440
- 19
- 79
- 150
0
votes
1 answer
Amazon Pinpoint SMS For India
I am trying to implement Amazon's Pinpoint SMS. There is a special requirement for India to send SMS. I have followed this Documentation and added EntityId and TemplateId as extra parameters to pinpoint.sendMessages. But when I do, I am…

Chris
- 1,236
- 2
- 18
- 34
0
votes
1 answer
AWS Pinpoint Push Notifications and Apple Tracking Transparency
I have a short question - I am using AWS Pinpoint for push notification delivery in my React Native App that I am currently developing. Can I use Pinpoint for push notification delivery even if the user denies 3rd party tracking on iOS (Apple…

the_smart_home_maker
- 514
- 4
- 21
0
votes
2 answers
Analytics with AWS Amplify and Pinpoint
Currently working implementing web and mobile analytics via AWS Amplify and Pinpoint.
I've noticed that analytics section of the Amplify docs for JS differs from the related section for iOS and Android, specifically in the extra…

drrkmcfrrk
- 328
- 1
- 13
0
votes
1 answer
AWS Pinpoint updating user attributes when unauthenticated - security issue?
I'm looking at using AWS Pinpoint to send push notifications to my react native app. However it seems that unauthenticated users are able to update user attributes for any user they wish, ie there is no access control. I'm new to mobile development,…

Nikhil Satish
- 61
- 3