Questions tagged [aws-pinpoint]

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.

249 questions
2
votes
2 answers

Destination Stream Validation Failed?

I've been trying for days, how can I successfully export my Pinpoint Analytics through Kinesis? I constantly get this error: Failed to configure event stream. Destination stream validation failed. What does this mean? How can I resolve the issue?…
2
votes
0 answers

Send push notifications to a specific logged user with pinpoint

Im developing a react native app integrated with aws-amplify and aws mobile hub. We currently logged our user into cognito. im trying to send a push notification to a specific endpoint Id, but i cannot see how to set that endpointId, in the node js…
user2449016
  • 169
  • 1
  • 13
2
votes
2 answers

How to supply ios device token to AWS Pinpoint

I'm unable to perform Direct Messaging using the AWS Pinpoint console. Each attempt results in a "Failed to submit push notification to..." error whether I provide an EndpointID or a DeviceToken. I'm guessing that I am not providing a valid device…
David U
  • 943
  • 1
  • 8
  • 22
2
votes
1 answer

Failed to submit push notification to device token

I got the error Failed to submit push notification to while I was trying to send push notification for Amazon Pinpoint using a device token. How can I configure gcm/fcm push correctly?
2
votes
1 answer

AWS Pinpoint: How to get notification when app install/run directly from Xcode into device?

We have created project in Mobile Hub and manage AWS Pinpoint to send push notification in iOS devices and setup AWS Pinpoint console for push notification. We have uploaded development certificate .p12 and download the demo app from our…
1
vote
1 answer

What is the purpose of ISOCountryCode field in Validate Phone Number API - AWS-Pinpoint

I am using AWS Javascript SDK to validate phone number, the payload is like this { "IsoCountryCode": "string", "PhoneNumber": "string" } In the docs, its mentioned that providing a country code in PhoneNumber field is mandatory, which is clear.…
Salim Shamim
  • 656
  • 10
  • 25
1
vote
0 answers

Why is my "Session Stop" count higher than my "Session Start" count for the same period in AWS Pinpoint?

I'm testing the service myself, and the sessions were all started / stopped within the same period. I enabled Pinpoint with: Amplify.configure(awsConfig); Analytics.autoTrack('session', { enable: true, provider: 'AWSPinpoint' }); But, there are…
Veita
  • 509
  • 1
  • 5
  • 16
1
vote
1 answer

AWS Pinpoint SDK - How to import a segment and create campaign

I am working on a pinpoint integration that will hopefully use the java sdk to create a segment and launch a campaign in one shot. I am having trouble determining how to do this. If I use ImportJobRequest to import a CSV/JSON file from S3 and use…
dreamwagon
  • 1,219
  • 1
  • 15
  • 17
1
vote
0 answers

Is it possible to export all recorded events together in AWS Pinpoint?

I am tracking user behaviour within my mobile react-native application. My configurations are working and I am recording an event like this: await Analytics.record({ name: "TestEvent", attributes: { user: user, attr: "test", …
alexrogo
  • 522
  • 3
  • 17
1
vote
2 answers

Sending an email with RAW content using AWS Pinpoint and Go returns 403

I'm trying to send an email via AWS pinpoint containing attachments. To send attachments with an email, you must use the 'RAW' email content. The only documentation I can find about this is here:…
Thijs van der Heijden
  • 1,147
  • 1
  • 10
  • 25
1
vote
0 answers

AWS Pinpoint - not able to filter segment by locale

I'm facing quite a big problem with AWS Pinpoint. Our application is an iOS native app and we want to send marketing push notifications based on the user's locale. Unfortunately, I cannot filter the segment by Pinpoint's default endpoint attribute…
colin
  • 761
  • 1
  • 11
  • 24
1
vote
0 answers

How often should I identify User for analytics?

The analytics plugin allows me to identify users (Amplify.Analytics.identifyUser(...)). How often should I call this? It is apparent I should call it whenever a user signs up and signs in, or signs out. But should I run it evevy time the user opens…
DJSjr
  • 66
  • 5
1
vote
2 answers

AWS CDK Get Pinpoint Project/Application ID

In the AWS CDK, it's straight forward to create a Pinpoint Service. But how do you get the Project ID (also referred to as the Pinpoint App ID or Application ID) for use in subsequent CDK code. Create a Pinpoint project: const pinpointProject = new…
Matthew
  • 2,871
  • 5
  • 34
  • 59
1
vote
0 answers

AWS Pinpoint Request on Lambda Function using Python

I tried to using pinpoint services in my Lambda Function using Python Language. But I am facing time out error once Executed my function. Here is my lambda function source code. import json import boto3 client = boto3.client('pinpoint') def…
1
vote
1 answer

Pinpoint does not send event data to Kinesis

I want to use personalize for my app recommendation model. To get my Current apps analytics data. I have connected pinpoint to get the data with the help of kinesis firehose as explain in this documentation. But when I connected kinesis data…