Payment with REST API Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm...
What is the proper term for etching or digging of wall to hide conduit of cables
3D Masyu - A Die
Determine whether an integer is a palindrome
How can I prevent/balance waiting and turtling as a response to cooldown mechanics
Sally's older brother
Flight departed from the gate 5 min before scheduled departure time. Refund options
Twin's vs. Twins'
New Order #6: Easter Egg
Inverse square law not accurate for non-point masses?
How to achieve cat-like agility?
Why are current probes so expensive?
How to make triangles with rounded sides and corners? (squircle with 3 sides)
What was the last profitable war?
Why does BitLocker not use RSA?
newbie Q : How to read an output file in one command line
Keep at all times, the minus sign above aligned with minus sign below
Can gravitational waves pass through a black hole?
How could a hydrazine and N2O4 cloud (or it's reactants) show up in weather radar?
What did Turing mean when saying that "machines cannot give rise to surprises" is due to a fallacy?
Derived column in a data extension
How does the body cool itself in a stillsuit?
Did any compiler fully use 80-bit floating point?
An isoperimetric-type inequality inside a cube
By what mechanism was the 2017 UK General Election called?
Payment with REST API
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?Getting strange result querying carts when using multiple search filter groupsThe requested Payment Method is not available When creating an orderHow to return a JSON object with a custom REST API in Magento 2?How do I get Bestseller Product with REST APIMagento 2 REST API placing order with Braintree Credit Card errorGet all simple product with REST APIMagento 2 REST API - Update Payment Methodhow to login with facebook rest apiUpdate Customer data with REST APIMagento2 Get Payment Method API Returns Empty
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I'm using Braintree payment gateway and having issues when tying to make a payment through REST API. I am calling carts/mine/payment-information endpoint with following values.
Header:
Authorization: Bearer customer-token
Content-type: application/json
Body:
{
"paymentMethod": {
"po_number": "",
"method": "braintree",
"additional_data":{
"cc_last4":"1111",
"store_in_vault":true,
"payment_method_nonce":"nonce-goes-here",
"cc_token":"",
"device_data":"",
"cc_type":"Visa",
"cc_exp_year":"2055",
"cc_exp_month":"01"
},
"extension_attributes": {
"agreement_ids": [
"string"
]
}
},
"billingAddress": {
"id": 0,
"region": "Victoria",
"region_id": 546,
"region_code": "VIC",
"country_id": "AU",
"street": [
"Main St"
],
"company": "Company Name",
"telephone": "987654321",
"fax": "",
"postcode": "3000",
"city": "Melbourne",
"firstname": "Firstname",
"lastname": "Lastname",
"middlename": "Middlename",
"prefix": "Mr",
"suffix": "",
"vat_id": "",
"customer_id": 0,
"email": "name@domain.name",
"same_as_billing": 0,
"customer_address_id": 0,
"save_in_address_book": 0,
"extension_attributes": {},
"custom_attributes": {}
}
}
I have generated a braintree token and used that token to generate the nonce. With the use of nonce, I was able to create a Braintree transaction as below.
$result = Braintree_Transaction::sale([
'amount' => $transactionAmount,
'paymentMethodNonce' => $nonceFromTheClient,
'options' => [
'submitForSettlement' => True
]
]);
The transaction gets successful but when I try to place an order on Magento using my transaction details, I keep getting the following error.
Transaction has been declined. Please try again later
Can anyone advise me what's wrong with my process/ request please?
Thanks!
magento2 payment-methods rest-api braintree
bumped to the homepage by Community♦ 10 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I'm using Braintree payment gateway and having issues when tying to make a payment through REST API. I am calling carts/mine/payment-information endpoint with following values.
Header:
Authorization: Bearer customer-token
Content-type: application/json
Body:
{
"paymentMethod": {
"po_number": "",
"method": "braintree",
"additional_data":{
"cc_last4":"1111",
"store_in_vault":true,
"payment_method_nonce":"nonce-goes-here",
"cc_token":"",
"device_data":"",
"cc_type":"Visa",
"cc_exp_year":"2055",
"cc_exp_month":"01"
},
"extension_attributes": {
"agreement_ids": [
"string"
]
}
},
"billingAddress": {
"id": 0,
"region": "Victoria",
"region_id": 546,
"region_code": "VIC",
"country_id": "AU",
"street": [
"Main St"
],
"company": "Company Name",
"telephone": "987654321",
"fax": "",
"postcode": "3000",
"city": "Melbourne",
"firstname": "Firstname",
"lastname": "Lastname",
"middlename": "Middlename",
"prefix": "Mr",
"suffix": "",
"vat_id": "",
"customer_id": 0,
"email": "name@domain.name",
"same_as_billing": 0,
"customer_address_id": 0,
"save_in_address_book": 0,
"extension_attributes": {},
"custom_attributes": {}
}
}
I have generated a braintree token and used that token to generate the nonce. With the use of nonce, I was able to create a Braintree transaction as below.
$result = Braintree_Transaction::sale([
'amount' => $transactionAmount,
'paymentMethodNonce' => $nonceFromTheClient,
'options' => [
'submitForSettlement' => True
]
]);
The transaction gets successful but when I try to place an order on Magento using my transaction details, I keep getting the following error.
Transaction has been declined. Please try again later
Can anyone advise me what's wrong with my process/ request please?
Thanks!
magento2 payment-methods rest-api braintree
bumped to the homepage by Community♦ 10 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Could you pass along which version of Magento you're using. Do you have error/exception logging enabled? If so, would you mind posting the error(s) in those logs?
– drs6222
Feb 21 '18 at 17:36
add a comment |
I'm using Braintree payment gateway and having issues when tying to make a payment through REST API. I am calling carts/mine/payment-information endpoint with following values.
Header:
Authorization: Bearer customer-token
Content-type: application/json
Body:
{
"paymentMethod": {
"po_number": "",
"method": "braintree",
"additional_data":{
"cc_last4":"1111",
"store_in_vault":true,
"payment_method_nonce":"nonce-goes-here",
"cc_token":"",
"device_data":"",
"cc_type":"Visa",
"cc_exp_year":"2055",
"cc_exp_month":"01"
},
"extension_attributes": {
"agreement_ids": [
"string"
]
}
},
"billingAddress": {
"id": 0,
"region": "Victoria",
"region_id": 546,
"region_code": "VIC",
"country_id": "AU",
"street": [
"Main St"
],
"company": "Company Name",
"telephone": "987654321",
"fax": "",
"postcode": "3000",
"city": "Melbourne",
"firstname": "Firstname",
"lastname": "Lastname",
"middlename": "Middlename",
"prefix": "Mr",
"suffix": "",
"vat_id": "",
"customer_id": 0,
"email": "name@domain.name",
"same_as_billing": 0,
"customer_address_id": 0,
"save_in_address_book": 0,
"extension_attributes": {},
"custom_attributes": {}
}
}
I have generated a braintree token and used that token to generate the nonce. With the use of nonce, I was able to create a Braintree transaction as below.
$result = Braintree_Transaction::sale([
'amount' => $transactionAmount,
'paymentMethodNonce' => $nonceFromTheClient,
'options' => [
'submitForSettlement' => True
]
]);
The transaction gets successful but when I try to place an order on Magento using my transaction details, I keep getting the following error.
Transaction has been declined. Please try again later
Can anyone advise me what's wrong with my process/ request please?
Thanks!
magento2 payment-methods rest-api braintree
I'm using Braintree payment gateway and having issues when tying to make a payment through REST API. I am calling carts/mine/payment-information endpoint with following values.
Header:
Authorization: Bearer customer-token
Content-type: application/json
Body:
{
"paymentMethod": {
"po_number": "",
"method": "braintree",
"additional_data":{
"cc_last4":"1111",
"store_in_vault":true,
"payment_method_nonce":"nonce-goes-here",
"cc_token":"",
"device_data":"",
"cc_type":"Visa",
"cc_exp_year":"2055",
"cc_exp_month":"01"
},
"extension_attributes": {
"agreement_ids": [
"string"
]
}
},
"billingAddress": {
"id": 0,
"region": "Victoria",
"region_id": 546,
"region_code": "VIC",
"country_id": "AU",
"street": [
"Main St"
],
"company": "Company Name",
"telephone": "987654321",
"fax": "",
"postcode": "3000",
"city": "Melbourne",
"firstname": "Firstname",
"lastname": "Lastname",
"middlename": "Middlename",
"prefix": "Mr",
"suffix": "",
"vat_id": "",
"customer_id": 0,
"email": "name@domain.name",
"same_as_billing": 0,
"customer_address_id": 0,
"save_in_address_book": 0,
"extension_attributes": {},
"custom_attributes": {}
}
}
I have generated a braintree token and used that token to generate the nonce. With the use of nonce, I was able to create a Braintree transaction as below.
$result = Braintree_Transaction::sale([
'amount' => $transactionAmount,
'paymentMethodNonce' => $nonceFromTheClient,
'options' => [
'submitForSettlement' => True
]
]);
The transaction gets successful but when I try to place an order on Magento using my transaction details, I keep getting the following error.
Transaction has been declined. Please try again later
Can anyone advise me what's wrong with my process/ request please?
Thanks!
magento2 payment-methods rest-api braintree
magento2 payment-methods rest-api braintree
asked Feb 14 '18 at 5:12
shakpitshakpit
263
263
bumped to the homepage by Community♦ 10 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 10 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Could you pass along which version of Magento you're using. Do you have error/exception logging enabled? If so, would you mind posting the error(s) in those logs?
– drs6222
Feb 21 '18 at 17:36
add a comment |
Could you pass along which version of Magento you're using. Do you have error/exception logging enabled? If so, would you mind posting the error(s) in those logs?
– drs6222
Feb 21 '18 at 17:36
Could you pass along which version of Magento you're using. Do you have error/exception logging enabled? If so, would you mind posting the error(s) in those logs?
– drs6222
Feb 21 '18 at 17:36
Could you pass along which version of Magento you're using. Do you have error/exception logging enabled? If so, would you mind posting the error(s) in those logs?
– drs6222
Feb 21 '18 at 17:36
add a comment |
1 Answer
1
active
oldest
votes
Here how Braintree integration looks like (https://developers.braintreepayments.com/start/overview)
So you need do the following
1) Get client token from Magento server. I didn't find rest endpoint for it so I've created a custom extension for this purpose (https://github.com/troublediehard/mma-customapi)
2) Then use sdk and token to get nonce from you card
3) And send your request with nonce data like this
{
paymentMethod: {
method: 'braintree',
additional_data: {
payment_method_nonce: nonce,
}
}
}
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "479"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f213397%2fpayment-with-rest-api%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Here how Braintree integration looks like (https://developers.braintreepayments.com/start/overview)
So you need do the following
1) Get client token from Magento server. I didn't find rest endpoint for it so I've created a custom extension for this purpose (https://github.com/troublediehard/mma-customapi)
2) Then use sdk and token to get nonce from you card
3) And send your request with nonce data like this
{
paymentMethod: {
method: 'braintree',
additional_data: {
payment_method_nonce: nonce,
}
}
}
add a comment |
Here how Braintree integration looks like (https://developers.braintreepayments.com/start/overview)
So you need do the following
1) Get client token from Magento server. I didn't find rest endpoint for it so I've created a custom extension for this purpose (https://github.com/troublediehard/mma-customapi)
2) Then use sdk and token to get nonce from you card
3) And send your request with nonce data like this
{
paymentMethod: {
method: 'braintree',
additional_data: {
payment_method_nonce: nonce,
}
}
}
add a comment |
Here how Braintree integration looks like (https://developers.braintreepayments.com/start/overview)
So you need do the following
1) Get client token from Magento server. I didn't find rest endpoint for it so I've created a custom extension for this purpose (https://github.com/troublediehard/mma-customapi)
2) Then use sdk and token to get nonce from you card
3) And send your request with nonce data like this
{
paymentMethod: {
method: 'braintree',
additional_data: {
payment_method_nonce: nonce,
}
}
}
Here how Braintree integration looks like (https://developers.braintreepayments.com/start/overview)
So you need do the following
1) Get client token from Magento server. I didn't find rest endpoint for it so I've created a custom extension for this purpose (https://github.com/troublediehard/mma-customapi)
2) Then use sdk and token to get nonce from you card
3) And send your request with nonce data like this
{
paymentMethod: {
method: 'braintree',
additional_data: {
payment_method_nonce: nonce,
}
}
}
answered Aug 26 '18 at 21:59
Dmitri PortenkoDmitri Portenko
474315
474315
add a comment |
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f213397%2fpayment-with-rest-api%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Could you pass along which version of Magento you're using. Do you have error/exception logging enabled? If so, would you mind posting the error(s) in those logs?
– drs6222
Feb 21 '18 at 17:36