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
2
votes
0 answers
How do you send a campaign to a custom channel in pinpoint?
I've created a separate "custom channel" in AWS Pinpoint using the example documentation (beta), but the campaigns I send don't match any endpoints.
I've updated the project to use my Lambda function:
aws pinpoint update-application-settings \
…

mikebridge
- 4,209
- 2
- 40
- 50
2
votes
3 answers
AWS Pinpoint Custom Channel: Could not properly invoke Lambda function specified in hook
I'm attempting to create a (beta) Custom Channel for my AWS Pinpoint Project by setting up a CampaignHook that executes a Lambda Function as per the example documentation.
My lambda function seems to work correctly on its own. However, when I get…

mikebridge
- 4,209
- 2
- 40
- 50
2
votes
2 answers
Where do you set the credentials configuration for AWS pinpoint in a react native project?
When I try to launch my react-native project I get the following error:
AWSPinpointProvider record event failed: Credentials error missing credentials in config. I am not using the record function yet, so I assume this is coming from the configure…

Brad R
- 21
- 2
2
votes
1 answer
How to trace my Analytics.record() event sent to AWS Personalize?
I am trying to emit an event of type 'Identify' to AWS-Personalize. However there is no provision to see events other than types: Session Start and Session End inside AWSPinpoint
Also tried editing Pinpoint policy to enable it use .record() api as…

Ramakrishnan C S
- 41
- 5
2
votes
0 answers
AWS Pinpoint. Mobile push notifications. Why сontent-available always sets to 1?
I am using boto3 and in some cases I need to send silent notifications. I can do it by setting "SilentPush": True. Example:
response = client.send_messages(
ApplicationId='string',
MessageRequest={
'Addresses': {
…

sscream
- 21
- 1
2
votes
0 answers
AWS Pinpoint Two way SMS is not triggering SNS for Incoming SMS
I have requested a dedicated long code. But Whenever I send SMS to this Dedicated long code with Keywords, nothing is happening. I am not receiving any automated response messages (Response messages setup in the AWS Pinpoint Console). The dedicated…

Naroju
- 2,637
- 4
- 25
- 44
2
votes
0 answers
Can Amazon Pinpoint Monetization events be created via the REST API?
I'm investigating Amazon Pinpoint as an SMS campaign engine which we would integrate via the REST APIs.
Having reviewed the documentation about Monetization events, they are only discussed in the context of iOS/Android SDKs or the JavaScript…

user6669314
- 31
- 2
2
votes
1 answer
How to create an APNS sandbox channel in Amazon Pinpoint?
I have an APNS sandbox certificate as a .p12 file and a password. I see no way to upload it using the AWS Console. There is a method documented in the CLI that should allow…

Konstantin Smolyakov
- 735
- 1
- 7
- 14
2
votes
2 answers
How do you create custom dashboards in AWS Pinpoint?
AWS Pinpoint Analytics appears to have replaced Amazon Mobile Analytics. In Mobile Analytics, you were able to create custom dashboards.
I'm struggling to find the feature in AWS Pinpoint. I'm assuming it's in there somewhere, but alas, I haven't…

D. Patrick
- 2,894
- 26
- 37
2
votes
1 answer
Amazon Pinpoint Push Notification not displayed when the app is in foreground on Android
I am working on Push notifications through Pinpoint using Firebase.
I am able to receive push notifications when the app is not in foreground. However I don't receive it when the app is open.
I looked at the PushListenerService code and it had…

Sagar
- 416
- 7
- 23
2
votes
0 answers
Request old data from pinpoint
I have been using kinesis firehose to move pinpoint data to s3 from jan 2019 ,since its 2019 the folder which is getting written is 'myproj-2019' but I need 2018 data too. Is there any way to fetch old data by configuring firehose stream or do we…

SaiSivaSubramanian L
- 159
- 9
2
votes
1 answer
aws pinpoint update-apns-sandbox-channel command results in: missing credentials
aws --version
aws-cli/1.16.76 Python/2.7.10 Darwin/16.7.0 botocore/1.12.66
I'm trying to programmatically add an APNS_SANDBOX channel to a pinpoint app. I'm able to do this successfully via the pinpoint console, but not with aws cli or a lambda…

Jordan McMillan
- 31
- 4
2
votes
1 answer
Sending push notification using Amazon pinpiont programatically
I am trying to send push notification to android device using GCM/FCM via Amazon pinpoint. I am able to send the message and can see it when I debug the Android app in the emulator but the message data is empty. Not sure how I can debug what I am…

Mayank
- 357
- 3
- 17
2
votes
1 answer
Cognito metrics not showing in Pinpoint
Been trying to setup Cognito/Pinpoint integration to get metrics on user sign in and sessions, following the developer guide: https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-pools-pinpoint-integration.html. So far, no metrics…

nighthawk454
- 943
- 12
- 20
2
votes
2 answers
Send push notification from iOS using AWS Pinpoint
I am using AWS SDK to send push notifications to devices using direct messages. I was able to send message on Android using AmazonPinpointClient(creds).sendMessages(sendMessagesRequest).
I can find all equivalent classes on iOS except the…

Noura
- 722
- 10
- 24