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
0 answers

AWS Pinpoint journey, segments attributes mismatch with current values

I have a few dynamic segments created, base on a "master" segment that is imported from a CSV file located in an S3 bucket. This segment "master" segment is updated every 24 hours and reuploaded to S3, we also have a boto3 API create_import_job that…
Manza
  • 2,109
  • 1
  • 27
  • 34
2
votes
0 answers

AWS Pinpoint events delayed and don't trigger journeys

I want to create user journey's using AWS Pinpoint. My mobile app is made with Flutter and using Amplify package to create events) pubspec.yaml amplify_flutter: ^0.2.4 amplify_analytics_pinpoint: ^0.2.4 I am calling this method to add the…
Merouane T.
  • 746
  • 1
  • 10
  • 14
2
votes
0 answers

AWS Pinpoint Request on Lambda Function using Python 3.6

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…
2
votes
2 answers

I'm not seeing "Publish" button in Amazon Lex Bot and all the tutorials' screenshots I'm finding don't align with my AWS Consoles

Hello Stackoverflow Friends: Context: My goal is to use Amazon Lex Bot to communicate via an SMS text channel using an Amazon Pinpoint phone number associated with my account. Users will send utterances via their native text client, i.e. the…
davos
  • 151
  • 10
2
votes
1 answer

How to setup toll-free number in AWS SNS instead of the default?

I am using AWS cognito to signup users and create new accounts for my users on my web-app. I authorize the user's phone number by sending a one-time-password via AWS SNS. Off-late there has been a message on my SNS dashboard which reads like this…
API
  • 449
  • 3
  • 12
2
votes
0 answers

Aws pinpoint : Send sms from aws sub account

We are using pinpoint to send sms from our Spring boot server hosted in aws (Main account). We have 1 sub account where we have configured pinpoint. We have setup the main account to send sms from account id of sub account (pipoint application…
Opv
  • 440
  • 1
  • 3
  • 17
2
votes
0 answers

Amazon Pinpoint MMS notifications?

I'm wondering if anyone else is wrestling with AWS Pinpoint? Basically I have some long codes that people can text, which the messages then get forwarded on to SNS. And from SNS it goes to SQS where the messages are handled in the queue. Everything…
2
votes
2 answers

How do you connect Cognito to Pinpoint for analytics?

I'm trying to get some basic analytics for a Cognito user pool. It seemed simple enough to do, I created a project in Pinpoint, then I went to my user pool, went to General settings > Analytics, clicked the Add Analytics button, choose the Amazon…
Rocket04
  • 1,801
  • 5
  • 25
  • 47
2
votes
0 answers

AWS pinpoint - Receive message from short code

I am not able to receive SMS from short code numbers on AWS Pinpoint. When I send an SMS to my pinpoint number from a long code number it works fine. When I send an SMS to my pinpoint number from a short code number I do not receive it. I have not…
Pedro Borges
  • 1,240
  • 10
  • 20
2
votes
1 answer

Add Pinpoint to Cognito which are in different regions

I have Cognito user pool in a region(say us-east-1) and Pinpoint in a different region(say us-east-2). When tried to add Pinpoint to the cognito pool in console(go to cognito->manage user pool->click analytics in the left pane), there was no option…
user5631
  • 35
  • 5
2
votes
1 answer

In aws pinpoint (NodeJS) how to trigger a email when custome event trigger by user

I am working on a NodeJs API which send a mail when New user added in AWS Pinpoint. I need to trigger a mail when new user add in AWS Pinpoint or sign-in attempts or some transaction happens or credit in his/her account is less than 5. I have…
2
votes
1 answer

What is the best way to get delivery status of sent message using aws pinpoint?

I went through the AWS pinpoint documentation for checking delivery status of sent SMS message. But, I couldn't find any batter way than streaming SMS Event to either Amazon Kinesis Data Streams or Amazon Kinesis Data Firehose then sending data to…
2
votes
2 answers

unable to send voice message on AWS pinpoint

trying to make this tutorial work https://docs.aws.amazon.com/pinpoint/latest/developerguide/send-messages-voice.html . current blocking issue: I'm facing this exception: Caused by: java.net.UnknownHostException:…
Jeremie
  • 1,267
  • 12
  • 33
2
votes
1 answer

AWS Pinpoint Push Notification for NodeJS has no sound

Currently I have this parameter to create a message in pinpoint, { ApplicationId: config.PROJECT_ID, MessageRequest: { Addresses: { [token]: { ChannelType: 'APNS' } }, …
2
votes
1 answer

Can we save client SMS responses in AWS Pinpoint's 2-way SMS?

I know that Amazon Pinpoint enables 2-way SMS, but I was wondering whether it was possible to save the message that the client sends. I'm finding myself going down the AWS rabbit-hole a bit, but I was wondering if anyone has any recommendations as…
1 2
3
16 17