Re: VRM Transaction Feed appUserId failure question
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
VRM Transaction Feed appUserId failure question
Using Postman, I am performing a POST request on the following endpoint:
https://sandbox.api.visa.com/visariskmanager/v1/transaction/feedback
I am using the sample JSON provided in the API reference example:
{
- "serviceType": "Case Creation",
- "appUserId": "marma2432f",
- "alertEndTime": "20170530075012",
- "alertStartTime": "20170530074012"
}
This is the response I receive back from the API:
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: VRM Transaction Feed appUserId failure question
Hi @afcbna,
It seems you are trying to call the Feedback endpoint, but the payload is for the Transaction Feed endpoint.
To test the Feedback endpoint in sandbox, please try the below payload:
{
"Feedback": [{
"alertStatus": {"status": "Good"},
"accountAction": {
"actionType": "Add",
"appliesTo": "All Rules",
"timeFrame": {
"untilFurtherNotice": "N",
"until": "20200904"
},
"actionName": "Exclude"
},
"seqNum": "0001",
"alertIdentifier": {"primaryAccountNumber": "1234567756225148"}
}],
"appUserId": "VDPVRMUser7756225"
}
the response should look like this:
{
"Feedback": [{
"Status": [
{
"code": "I-100005",
"message": "Successfully updated alert(s)"
},
{
"code": "I-100006",
"message": "Account is successfully blocked"
}
],
"seqNum": 1
}],
"id": "1598975855_847_656344474_l55c014_VDP_WS"
}
Best,
Stacey
Was your question answered? Don't forget to click on "Accept as Solution" to help other devs find the answer to the same question.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: VRM Transaction Feed appUserId failure question
Thank you for your response.
I tried your payload, and my response was:
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: VRM Transaction Feed appUserId failure question
Hi @afcbna,
Apologies, can you please send an email to developer@visa.com and let us know if you are working with a Visa account manager? Test alerts need to be generated for your VRM project in the sandbox environment to facilitate testing. Thanks.
Best,
Stacey
Was your question answered? Don't forget to click on "Accept as Solution" to help other devs find the answer to the same question.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: VRM Transaction Feed appUserId failure question
I sent an email to developer@visa.com asking additional questions yesterday but haven't received a response yet. And yes, I have an account manager, Arjun Nathan, who I also reached out to and am also waiting to hear back from. Do you know when I can expect to receive a reply from either developer@visa.com or from my account manager?
Thank you.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: VRM Transaction Feed appUserId failure question
Hi @afcbna,
We have received your email and are working to get answers to your questions. We'll share an update as soon as we have one. Thanks for your patience.
Best,
Stacey
Was your question answered? Don't forget to click on "Accept as Solution" to help other devs find the answer to the same question.