Paypal REST API with PHP SDK - How to get the transaction number? The Next CEO of Stack OverflowHow can I prevent SQL injection in PHP?How do I get PHP errors to display?How do I get a YouTube video thumbnail from the YouTube API?How do I POST JSON data with Curl from a terminal/commandline to Test Spring REST?How does PHP 'foreach' actually work?Paypal rest api - how to get the return transaction id after executePayPal REST API (PHP) not completing transactionpaypal rest payment success but no histroyPaypal: PHP SDK Error Incoming JSON request does not map to API requestPaypal PHP SDK implementation
Is it possible to create a QR code using text?
My boss doesn't want me to have a side project
A hang glider, sudden unexpected lift to 25,000 feet altitude, what could do this?
Prodigo = pro + ago?
pgfplots: How to draw a tangent graph below two others?
MT "will strike" & LXX "will watch carefully" (Gen 3:15)?
How exploitable/balanced is this homebrew spell: Spell Permanency?
Does int main() need a declaration on C++?
How can I prove that a state of equilibrium is unstable?
Can this transistor (2N2222) take 6 V on emitter-base? Am I reading the datasheet incorrectly?
Calculate the Mean mean of two numbers
Which acid/base does a strong base/acid react when added to a buffer solution?
What difference does it make matching a word with/without a trailing whitespace?
Upgrading From a 9 Speed Sora Derailleur?
Why can't we say "I have been having a dog"?
How can the PCs determine if an item is a phylactery?
Can you teleport closer to a creature you are Frightened of?
Can I hook these wires up to find the connection to a dead outlet?
How seriously should I take size and weight limits of hand luggage?
Gauss' Posthumous Publications?
Is it okay to majorly distort historical facts while writing a fiction story?
Is a linearly independent set whose span is dense a Schauder basis?
Arrows in tikz Markov chain diagram overlap
Ising model simulation
Paypal REST API with PHP SDK - How to get the transaction number?
The Next CEO of Stack OverflowHow can I prevent SQL injection in PHP?How do I get PHP errors to display?How do I get a YouTube video thumbnail from the YouTube API?How do I POST JSON data with Curl from a terminal/commandline to Test Spring REST?How does PHP 'foreach' actually work?Paypal rest api - how to get the return transaction id after executePayPal REST API (PHP) not completing transactionpaypal rest payment success but no histroyPaypal: PHP SDK Error Incoming JSON request does not map to API requestPaypal PHP SDK implementation
I'm using the REST API Paypal ExpressCheckout with the PHP SDK, my script is able to process payment but I would like to get a essential information about the payment : the transaction number, usefull for tracking payment.
He's anybody no how to get the transaction number after a payment ?
I use the version 1.
I've tried to do this :
$payment = Payment::get($paymentId, $apiContext);
$payment->getTransactions()[0]->getRelatedResources()[0]->getSale()->getId();
The returned result does not match with the transaction number.
I've also tried to do this :
$payment->getTransactions()[0]->getInvoiceNumber();
That returns NULL.
I've tried many object and methods of the API without finding the solution.
Thankz by advance for your help,
Mickaël
php rest api paypal sdk
add a comment |
I'm using the REST API Paypal ExpressCheckout with the PHP SDK, my script is able to process payment but I would like to get a essential information about the payment : the transaction number, usefull for tracking payment.
He's anybody no how to get the transaction number after a payment ?
I use the version 1.
I've tried to do this :
$payment = Payment::get($paymentId, $apiContext);
$payment->getTransactions()[0]->getRelatedResources()[0]->getSale()->getId();
The returned result does not match with the transaction number.
I've also tried to do this :
$payment->getTransactions()[0]->getInvoiceNumber();
That returns NULL.
I've tried many object and methods of the API without finding the solution.
Thankz by advance for your help,
Mickaël
php rest api paypal sdk
add a comment |
I'm using the REST API Paypal ExpressCheckout with the PHP SDK, my script is able to process payment but I would like to get a essential information about the payment : the transaction number, usefull for tracking payment.
He's anybody no how to get the transaction number after a payment ?
I use the version 1.
I've tried to do this :
$payment = Payment::get($paymentId, $apiContext);
$payment->getTransactions()[0]->getRelatedResources()[0]->getSale()->getId();
The returned result does not match with the transaction number.
I've also tried to do this :
$payment->getTransactions()[0]->getInvoiceNumber();
That returns NULL.
I've tried many object and methods of the API without finding the solution.
Thankz by advance for your help,
Mickaël
php rest api paypal sdk
I'm using the REST API Paypal ExpressCheckout with the PHP SDK, my script is able to process payment but I would like to get a essential information about the payment : the transaction number, usefull for tracking payment.
He's anybody no how to get the transaction number after a payment ?
I use the version 1.
I've tried to do this :
$payment = Payment::get($paymentId, $apiContext);
$payment->getTransactions()[0]->getRelatedResources()[0]->getSale()->getId();
The returned result does not match with the transaction number.
I've also tried to do this :
$payment->getTransactions()[0]->getInvoiceNumber();
That returns NULL.
I've tried many object and methods of the API without finding the solution.
Thankz by advance for your help,
Mickaël
php rest api paypal sdk
php rest api paypal sdk
edited Mar 23 at 18:07
MOWebCreation
asked Mar 21 at 20:05
MOWebCreationMOWebCreation
10211
10211
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
With v1/payments, when you execute the payment there will be a transactions->sale->id
With v2/checkout/orders, when you capture an order there will be a payments->captures->id
I've not found the properties "transactions->sale->id" in the "payment" object. Can you please add some code sample ? I've tried "$payment->getTransactions()[0]->getRelatedResources()[0]->getSale()->getId()" without success. Please check the code sample that I've add in my first post.
– MOWebCreation
Mar 23 at 18:13
"The returned result does not match with the transaction number" It should match. Note that the receiver and sender's transaction #s are different
– Preston Alexander
Mar 23 at 22:03
That's OK, I wanted to get the custumer transaction Id, but it's appear to be not possible. However, the seller transaction id can be found by doing $payment->getTransactions()[0]->getRelatedResources()[0]->getSale()->getId()"
– MOWebCreation
Mar 25 at 21:19
add a comment |
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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%2fstackoverflow.com%2fquestions%2f55288479%2fpaypal-rest-api-with-php-sdk-how-to-get-the-transaction-number%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
With v1/payments, when you execute the payment there will be a transactions->sale->id
With v2/checkout/orders, when you capture an order there will be a payments->captures->id
I've not found the properties "transactions->sale->id" in the "payment" object. Can you please add some code sample ? I've tried "$payment->getTransactions()[0]->getRelatedResources()[0]->getSale()->getId()" without success. Please check the code sample that I've add in my first post.
– MOWebCreation
Mar 23 at 18:13
"The returned result does not match with the transaction number" It should match. Note that the receiver and sender's transaction #s are different
– Preston Alexander
Mar 23 at 22:03
That's OK, I wanted to get the custumer transaction Id, but it's appear to be not possible. However, the seller transaction id can be found by doing $payment->getTransactions()[0]->getRelatedResources()[0]->getSale()->getId()"
– MOWebCreation
Mar 25 at 21:19
add a comment |
With v1/payments, when you execute the payment there will be a transactions->sale->id
With v2/checkout/orders, when you capture an order there will be a payments->captures->id
I've not found the properties "transactions->sale->id" in the "payment" object. Can you please add some code sample ? I've tried "$payment->getTransactions()[0]->getRelatedResources()[0]->getSale()->getId()" without success. Please check the code sample that I've add in my first post.
– MOWebCreation
Mar 23 at 18:13
"The returned result does not match with the transaction number" It should match. Note that the receiver and sender's transaction #s are different
– Preston Alexander
Mar 23 at 22:03
That's OK, I wanted to get the custumer transaction Id, but it's appear to be not possible. However, the seller transaction id can be found by doing $payment->getTransactions()[0]->getRelatedResources()[0]->getSale()->getId()"
– MOWebCreation
Mar 25 at 21:19
add a comment |
With v1/payments, when you execute the payment there will be a transactions->sale->id
With v2/checkout/orders, when you capture an order there will be a payments->captures->id
With v1/payments, when you execute the payment there will be a transactions->sale->id
With v2/checkout/orders, when you capture an order there will be a payments->captures->id
answered Mar 22 at 5:23
Preston AlexanderPreston Alexander
1,419176
1,419176
I've not found the properties "transactions->sale->id" in the "payment" object. Can you please add some code sample ? I've tried "$payment->getTransactions()[0]->getRelatedResources()[0]->getSale()->getId()" without success. Please check the code sample that I've add in my first post.
– MOWebCreation
Mar 23 at 18:13
"The returned result does not match with the transaction number" It should match. Note that the receiver and sender's transaction #s are different
– Preston Alexander
Mar 23 at 22:03
That's OK, I wanted to get the custumer transaction Id, but it's appear to be not possible. However, the seller transaction id can be found by doing $payment->getTransactions()[0]->getRelatedResources()[0]->getSale()->getId()"
– MOWebCreation
Mar 25 at 21:19
add a comment |
I've not found the properties "transactions->sale->id" in the "payment" object. Can you please add some code sample ? I've tried "$payment->getTransactions()[0]->getRelatedResources()[0]->getSale()->getId()" without success. Please check the code sample that I've add in my first post.
– MOWebCreation
Mar 23 at 18:13
"The returned result does not match with the transaction number" It should match. Note that the receiver and sender's transaction #s are different
– Preston Alexander
Mar 23 at 22:03
That's OK, I wanted to get the custumer transaction Id, but it's appear to be not possible. However, the seller transaction id can be found by doing $payment->getTransactions()[0]->getRelatedResources()[0]->getSale()->getId()"
– MOWebCreation
Mar 25 at 21:19
I've not found the properties "transactions->sale->id" in the "payment" object. Can you please add some code sample ? I've tried "$payment->getTransactions()[0]->getRelatedResources()[0]->getSale()->getId()" without success. Please check the code sample that I've add in my first post.
– MOWebCreation
Mar 23 at 18:13
I've not found the properties "transactions->sale->id" in the "payment" object. Can you please add some code sample ? I've tried "$payment->getTransactions()[0]->getRelatedResources()[0]->getSale()->getId()" without success. Please check the code sample that I've add in my first post.
– MOWebCreation
Mar 23 at 18:13
"The returned result does not match with the transaction number" It should match. Note that the receiver and sender's transaction #s are different
– Preston Alexander
Mar 23 at 22:03
"The returned result does not match with the transaction number" It should match. Note that the receiver and sender's transaction #s are different
– Preston Alexander
Mar 23 at 22:03
That's OK, I wanted to get the custumer transaction Id, but it's appear to be not possible. However, the seller transaction id can be found by doing $payment->getTransactions()[0]->getRelatedResources()[0]->getSale()->getId()"
– MOWebCreation
Mar 25 at 21:19
That's OK, I wanted to get the custumer transaction Id, but it's appear to be not possible. However, the seller transaction id can be found by doing $payment->getTransactions()[0]->getRelatedResources()[0]->getSale()->getId()"
– MOWebCreation
Mar 25 at 21:19
add a comment |
Thanks for contributing an answer to Stack Overflow!
- 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%2fstackoverflow.com%2fquestions%2f55288479%2fpaypal-rest-api-with-php-sdk-how-to-get-the-transaction-number%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