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
1
vote
1 answer

Send pinpoint push notification

I want to send a push notification using c#. This is what I've tried. var credentials = new BasicAWSCredentials("key", "secretkey"); var a = new AmazonPinpointClient(credentials, RegionEndpoint.EUWest1); var mensaje = new SendMessagesRequest(); …
Jaime Cuellar
  • 464
  • 1
  • 5
  • 20
1
vote
2 answers

Sending a SMS message using AWS Pinpoint to a specific phone number

I am trying to send a SMS message using AWS Pinpoint to a specific phone number. Here is what I have so far in nodejs: var AWS = require('aws-sdk'); AWS.config.update({region: 'us-east-1'}); var pinpoint = new AWS.Pinpoint({apiVersion:…
Peter Chikov
  • 172
  • 3
  • 16
1
vote
1 answer

How to use Pinpoint to send a text message from a long code in python?

I am currently using boto3 to send text messages to my audience. The problem is that the text message always comes from a short code regardless of whether I put one of my valid long codes in the OriginationNumber field. client.send_messages( …
1
vote
1 answer

Creating Segments in Amazon Pinpoint

I am new to Amazon Pinpoint. I have created a sample webapp using AWS Amplify which generates an event when a button is pressed and sends anaytics to Amazon pinpoint. Now, I am trying to create Segment for sending email to specific endpoint. But…
Deependra Dangal
  • 1,145
  • 1
  • 13
  • 36
1
vote
1 answer

AWS Pinpoint - How to update APNs channel? How to convert a p12-certificate to String?

I want to update the APNs channel of an AWS pinpoint application. For that I have to create a APNSChannelRequest with the SSL certificate and the certificate password. The type of the both elements must be a string. How can I convert the .p12-file…
1
vote
1 answer

Amazon Pinpoint RecencyDimension Duration "At least once" not available through .Net API

I'd like to create a Pinpoint segment using a recency duration of "At least once". This duration is available in the AWS Portal (see first screenshot), but doesn't seem to be available through the .Net SDK (see second screenshot). Is there a way…
Agreene
  • 508
  • 7
  • 16
1
vote
1 answer

AWS Pinpoint concurrent messages

Amazon pinpoint two-way SMS service provides a long code to the user which accepts a message and can be hooked to reply separate message. how many concurrent messages can this service handle.
Pikachu-go
  • 3,058
  • 4
  • 20
  • 27
1
vote
2 answers

aws pinpoint push notifications click not working

I try to add push notifications feature to my app using Pinpoint, but I have an issue : the push notif is showing but there is no action when I click on it. I receive my notifications on a Service. I build my notification like this : val notifDetail…
1
vote
1 answer

Aws Pinpoint notifications sent to ios are received without sound . How I can Specify a Raw Payload?

All the notifications that we send for ios devices do not include sound in their payload. Here is a sample of the payload that is received: { "aps": { "alert": { "title": "s", "body": "s" }, "content-available": 1 }, …
xuhuaiqu
  • 41
  • 5
1
vote
1 answer

Persisting unauthenticated user on AWS Cognito and AWS Amplify with React Native

I'm trying to implement AWS-Amplify in a React Native app so that events can be sent to Pinpoint for analytics. A user doesn't need to be signed in to use the app, so they would be unauthenticated with Cognito. I am noticing that the identity of…
wan
  • 11
  • 2
1
vote
0 answers

AWS Pinpoint does not work with Android devices

I created a MobileHub Project, I used exactly the same API Key and SenderId I use in Mixpanel. I then try to send a push notification using Pinpoint and it does not work. By the way I am able to send messages to IOS devices though. I also tested the…
awavi
  • 837
  • 3
  • 11
  • 23
1
vote
1 answer

How to send sms in pinpoint aws

API Url requested-https://pinpoint.us-east-1.amazonaws.com/v1/apps/c29387d21e1744d682f6f7a0803327c8/messages Request body { "Context": {}, "MessageConfiguration": { "SMSMessage": { "Body": "string", "Substitutions": {}, …
Ishan Garg
  • 11
  • 1
  • 3
1
vote
1 answer

How to use Pinpoint send messages to specific devices using the Java AWS SDK for Pinpoint

I have been able to get my mobile Android app to receive messages generated from the Pinpoint Campaign console (https://console.aws.amazon.com/pinpoint/home) to a specific device by targeting the segment to a custom attribute that only that device…
Mark B
  • 271
  • 3
  • 12
1
vote
1 answer

Send a message to an AWS Pinpoint segment from a lambda function ( node.js / javascript )

If I have a segment of users in AWS Pinpoint and I want to send that segment a SNS Push message from a Lambda function, what API function do I use? The AWS Javascript SDK allows me to create and update a segment but it does NOT have anything that…
Zigglzworth
  • 6,645
  • 9
  • 68
  • 107
1
vote
1 answer

AWS Pinpoint Endpoints IDs lookup

I'm experimenting with AWS Pinpoint to send Push Notifications. Apart from anything that AWS front end has to offer I want to be able to send Push Notifications programatically from my Java web app. Those are meant to be single notifications to…