Paypal transaction to me is verified (by API), but my account balance is $0.00
Paypal transaction yesterday was verified (by API (https://api.paypal.com/v1/payments/payment/)), but my account balance was $0.00.
Today the same API answers me ----> ["name"]=> string(19) "INVALID_RESOURCE_ID" ["message"]=> string(39) "The requested resource ID was not found" ["information_link"]=> string(54) "https://developer.paypal.com/docs/api/payments/#errors" ["debug_id"]=> string(13) "b39d1f444064e"
And balance is $0 again. How to fix it, there in my online store are verified payments, they get "verified" status during payment, by API query.. what to do now? Where to search the problem?
(Before that the Sandbox version worked fine).
Payment execution:
if($test_mode_paypal)
$execute_url = 'https://api.sandbox.paypal.com/v1/payments/payment/'.$pay_key.'/execute';
else
$execute_url = 'https://api.paypal.com/v1/payments/payment/'.$pay_key.'/execute';
$header = array();
$header = 'Content-type: application/json';
$header = 'Accept: application/json';
$header = 'Authorization: Bearer '.$accessToken;
$data ='{
"payer_id":"'.$payer_id.'"
}';
//open connection
$curl = curl_init();
//set connection properties
curl_setopt($curl, CURLOPT_URL, $execute_url);
curl_setopt($curl, CURLOPT_POST, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_HEADER, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
curl_setopt($curl, CURLOPT_HTTPHEADER,$header);
//execute post
$response = curl_exec($curl);
//close connection
curl_close($curl);
$result = json_decode($response);
$response_arr = array();
if($result->state == 'approved')
{
$response_arr['status'] = 'ok';
$response_arr['message'] = $response;
return $response_arr;
}
paypal payment-gateway
add a comment |
Paypal transaction yesterday was verified (by API (https://api.paypal.com/v1/payments/payment/)), but my account balance was $0.00.
Today the same API answers me ----> ["name"]=> string(19) "INVALID_RESOURCE_ID" ["message"]=> string(39) "The requested resource ID was not found" ["information_link"]=> string(54) "https://developer.paypal.com/docs/api/payments/#errors" ["debug_id"]=> string(13) "b39d1f444064e"
And balance is $0 again. How to fix it, there in my online store are verified payments, they get "verified" status during payment, by API query.. what to do now? Where to search the problem?
(Before that the Sandbox version worked fine).
Payment execution:
if($test_mode_paypal)
$execute_url = 'https://api.sandbox.paypal.com/v1/payments/payment/'.$pay_key.'/execute';
else
$execute_url = 'https://api.paypal.com/v1/payments/payment/'.$pay_key.'/execute';
$header = array();
$header = 'Content-type: application/json';
$header = 'Accept: application/json';
$header = 'Authorization: Bearer '.$accessToken;
$data ='{
"payer_id":"'.$payer_id.'"
}';
//open connection
$curl = curl_init();
//set connection properties
curl_setopt($curl, CURLOPT_URL, $execute_url);
curl_setopt($curl, CURLOPT_POST, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_HEADER, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
curl_setopt($curl, CURLOPT_HTTPHEADER,$header);
//execute post
$response = curl_exec($curl);
//close connection
curl_close($curl);
$result = json_decode($response);
$response_arr = array();
if($result->state == 'approved')
{
$response_arr['status'] = 'ok';
$response_arr['message'] = $response;
return $response_arr;
}
paypal payment-gateway
add a comment |
Paypal transaction yesterday was verified (by API (https://api.paypal.com/v1/payments/payment/)), but my account balance was $0.00.
Today the same API answers me ----> ["name"]=> string(19) "INVALID_RESOURCE_ID" ["message"]=> string(39) "The requested resource ID was not found" ["information_link"]=> string(54) "https://developer.paypal.com/docs/api/payments/#errors" ["debug_id"]=> string(13) "b39d1f444064e"
And balance is $0 again. How to fix it, there in my online store are verified payments, they get "verified" status during payment, by API query.. what to do now? Where to search the problem?
(Before that the Sandbox version worked fine).
Payment execution:
if($test_mode_paypal)
$execute_url = 'https://api.sandbox.paypal.com/v1/payments/payment/'.$pay_key.'/execute';
else
$execute_url = 'https://api.paypal.com/v1/payments/payment/'.$pay_key.'/execute';
$header = array();
$header = 'Content-type: application/json';
$header = 'Accept: application/json';
$header = 'Authorization: Bearer '.$accessToken;
$data ='{
"payer_id":"'.$payer_id.'"
}';
//open connection
$curl = curl_init();
//set connection properties
curl_setopt($curl, CURLOPT_URL, $execute_url);
curl_setopt($curl, CURLOPT_POST, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_HEADER, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
curl_setopt($curl, CURLOPT_HTTPHEADER,$header);
//execute post
$response = curl_exec($curl);
//close connection
curl_close($curl);
$result = json_decode($response);
$response_arr = array();
if($result->state == 'approved')
{
$response_arr['status'] = 'ok';
$response_arr['message'] = $response;
return $response_arr;
}
paypal payment-gateway
Paypal transaction yesterday was verified (by API (https://api.paypal.com/v1/payments/payment/)), but my account balance was $0.00.
Today the same API answers me ----> ["name"]=> string(19) "INVALID_RESOURCE_ID" ["message"]=> string(39) "The requested resource ID was not found" ["information_link"]=> string(54) "https://developer.paypal.com/docs/api/payments/#errors" ["debug_id"]=> string(13) "b39d1f444064e"
And balance is $0 again. How to fix it, there in my online store are verified payments, they get "verified" status during payment, by API query.. what to do now? Where to search the problem?
(Before that the Sandbox version worked fine).
Payment execution:
if($test_mode_paypal)
$execute_url = 'https://api.sandbox.paypal.com/v1/payments/payment/'.$pay_key.'/execute';
else
$execute_url = 'https://api.paypal.com/v1/payments/payment/'.$pay_key.'/execute';
$header = array();
$header = 'Content-type: application/json';
$header = 'Accept: application/json';
$header = 'Authorization: Bearer '.$accessToken;
$data ='{
"payer_id":"'.$payer_id.'"
}';
//open connection
$curl = curl_init();
//set connection properties
curl_setopt($curl, CURLOPT_URL, $execute_url);
curl_setopt($curl, CURLOPT_POST, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_HEADER, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
curl_setopt($curl, CURLOPT_HTTPHEADER,$header);
//execute post
$response = curl_exec($curl);
//close connection
curl_close($curl);
$result = json_decode($response);
$response_arr = array();
if($result->state == 'approved')
{
$response_arr['status'] = 'ok';
$response_arr['message'] = $response;
return $response_arr;
}
paypal payment-gateway
paypal payment-gateway
edited Nov 29 '18 at 11:37
Tamar Danielyan
asked Nov 22 '18 at 9:23
Tamar DanielyanTamar Danielyan
53
53
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Sounds like you created the payment but you never executed it.
No, that doesn't help. I've added /execute too, now I get "state":"approved", but payment still doesn't made.
– Tamar Danielyan
Nov 29 '18 at 10:12
I've edited question, there is how the function looks like.
– Tamar Danielyan
Nov 29 '18 at 11:37
Maybe problem occures when I create payment? I create it in this way:$curl = curl_init("https://api.sandbox.paypal.com/v1/payments/payment/PAYID-LP73NDI44T29238WB1316137"); curl_setopt($curl, CURLOPT_POST, false); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_HEADER, false); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_HTTPHEADER, array( 'Authorization: Bearer ' . $accessToken, 'Accept: application/json', 'Content-Type: application/json' )); $response = curl_exec($curl);
– Tamar Danielyan
Nov 29 '18 at 12:08
if I have errors in "create" or "execute" functions, then why I get approved. I think maybe curl_setopt($curl, CURLOPT_POST, false); have to get true value, but then I get error "Failed to load resource: the server responded with a status of 500 () props.js:246 Uncaught Error: Request to post aylkerp.am/successful-payment-post-notify failed with 500 error. Correlation id: unknown { "message": "Server Error" } at XMLHttpRequest.<anonymous> (http.js:114)"; <aylkerp.am/successful-payment-post-notify> is my EXECUTE_URL: url in "paypal.Button.render" function
– Tamar Danielyan
Nov 29 '18 at 12:19
If you're getting approved, and not an error back from the API, then it's working. If you aren't seeing the money then you must be looking at the wrong account. Make sure you're signed in to the same sandbox account that you pulled the API credentials from as the seller account.
– Drew Angell
Nov 29 '18 at 21:02
add a comment |
Your Answer
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%2f53427577%2fpaypal-transaction-to-me-is-verified-by-api-but-my-account-balance-is-0-00%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
Sounds like you created the payment but you never executed it.
No, that doesn't help. I've added /execute too, now I get "state":"approved", but payment still doesn't made.
– Tamar Danielyan
Nov 29 '18 at 10:12
I've edited question, there is how the function looks like.
– Tamar Danielyan
Nov 29 '18 at 11:37
Maybe problem occures when I create payment? I create it in this way:$curl = curl_init("https://api.sandbox.paypal.com/v1/payments/payment/PAYID-LP73NDI44T29238WB1316137"); curl_setopt($curl, CURLOPT_POST, false); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_HEADER, false); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_HTTPHEADER, array( 'Authorization: Bearer ' . $accessToken, 'Accept: application/json', 'Content-Type: application/json' )); $response = curl_exec($curl);
– Tamar Danielyan
Nov 29 '18 at 12:08
if I have errors in "create" or "execute" functions, then why I get approved. I think maybe curl_setopt($curl, CURLOPT_POST, false); have to get true value, but then I get error "Failed to load resource: the server responded with a status of 500 () props.js:246 Uncaught Error: Request to post aylkerp.am/successful-payment-post-notify failed with 500 error. Correlation id: unknown { "message": "Server Error" } at XMLHttpRequest.<anonymous> (http.js:114)"; <aylkerp.am/successful-payment-post-notify> is my EXECUTE_URL: url in "paypal.Button.render" function
– Tamar Danielyan
Nov 29 '18 at 12:19
If you're getting approved, and not an error back from the API, then it's working. If you aren't seeing the money then you must be looking at the wrong account. Make sure you're signed in to the same sandbox account that you pulled the API credentials from as the seller account.
– Drew Angell
Nov 29 '18 at 21:02
add a comment |
Sounds like you created the payment but you never executed it.
No, that doesn't help. I've added /execute too, now I get "state":"approved", but payment still doesn't made.
– Tamar Danielyan
Nov 29 '18 at 10:12
I've edited question, there is how the function looks like.
– Tamar Danielyan
Nov 29 '18 at 11:37
Maybe problem occures when I create payment? I create it in this way:$curl = curl_init("https://api.sandbox.paypal.com/v1/payments/payment/PAYID-LP73NDI44T29238WB1316137"); curl_setopt($curl, CURLOPT_POST, false); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_HEADER, false); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_HTTPHEADER, array( 'Authorization: Bearer ' . $accessToken, 'Accept: application/json', 'Content-Type: application/json' )); $response = curl_exec($curl);
– Tamar Danielyan
Nov 29 '18 at 12:08
if I have errors in "create" or "execute" functions, then why I get approved. I think maybe curl_setopt($curl, CURLOPT_POST, false); have to get true value, but then I get error "Failed to load resource: the server responded with a status of 500 () props.js:246 Uncaught Error: Request to post aylkerp.am/successful-payment-post-notify failed with 500 error. Correlation id: unknown { "message": "Server Error" } at XMLHttpRequest.<anonymous> (http.js:114)"; <aylkerp.am/successful-payment-post-notify> is my EXECUTE_URL: url in "paypal.Button.render" function
– Tamar Danielyan
Nov 29 '18 at 12:19
If you're getting approved, and not an error back from the API, then it's working. If you aren't seeing the money then you must be looking at the wrong account. Make sure you're signed in to the same sandbox account that you pulled the API credentials from as the seller account.
– Drew Angell
Nov 29 '18 at 21:02
add a comment |
Sounds like you created the payment but you never executed it.
Sounds like you created the payment but you never executed it.
answered Nov 25 '18 at 19:47
Drew AngellDrew Angell
24.5k42443
24.5k42443
No, that doesn't help. I've added /execute too, now I get "state":"approved", but payment still doesn't made.
– Tamar Danielyan
Nov 29 '18 at 10:12
I've edited question, there is how the function looks like.
– Tamar Danielyan
Nov 29 '18 at 11:37
Maybe problem occures when I create payment? I create it in this way:$curl = curl_init("https://api.sandbox.paypal.com/v1/payments/payment/PAYID-LP73NDI44T29238WB1316137"); curl_setopt($curl, CURLOPT_POST, false); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_HEADER, false); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_HTTPHEADER, array( 'Authorization: Bearer ' . $accessToken, 'Accept: application/json', 'Content-Type: application/json' )); $response = curl_exec($curl);
– Tamar Danielyan
Nov 29 '18 at 12:08
if I have errors in "create" or "execute" functions, then why I get approved. I think maybe curl_setopt($curl, CURLOPT_POST, false); have to get true value, but then I get error "Failed to load resource: the server responded with a status of 500 () props.js:246 Uncaught Error: Request to post aylkerp.am/successful-payment-post-notify failed with 500 error. Correlation id: unknown { "message": "Server Error" } at XMLHttpRequest.<anonymous> (http.js:114)"; <aylkerp.am/successful-payment-post-notify> is my EXECUTE_URL: url in "paypal.Button.render" function
– Tamar Danielyan
Nov 29 '18 at 12:19
If you're getting approved, and not an error back from the API, then it's working. If you aren't seeing the money then you must be looking at the wrong account. Make sure you're signed in to the same sandbox account that you pulled the API credentials from as the seller account.
– Drew Angell
Nov 29 '18 at 21:02
add a comment |
No, that doesn't help. I've added /execute too, now I get "state":"approved", but payment still doesn't made.
– Tamar Danielyan
Nov 29 '18 at 10:12
I've edited question, there is how the function looks like.
– Tamar Danielyan
Nov 29 '18 at 11:37
Maybe problem occures when I create payment? I create it in this way:$curl = curl_init("https://api.sandbox.paypal.com/v1/payments/payment/PAYID-LP73NDI44T29238WB1316137"); curl_setopt($curl, CURLOPT_POST, false); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_HEADER, false); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_HTTPHEADER, array( 'Authorization: Bearer ' . $accessToken, 'Accept: application/json', 'Content-Type: application/json' )); $response = curl_exec($curl);
– Tamar Danielyan
Nov 29 '18 at 12:08
if I have errors in "create" or "execute" functions, then why I get approved. I think maybe curl_setopt($curl, CURLOPT_POST, false); have to get true value, but then I get error "Failed to load resource: the server responded with a status of 500 () props.js:246 Uncaught Error: Request to post aylkerp.am/successful-payment-post-notify failed with 500 error. Correlation id: unknown { "message": "Server Error" } at XMLHttpRequest.<anonymous> (http.js:114)"; <aylkerp.am/successful-payment-post-notify> is my EXECUTE_URL: url in "paypal.Button.render" function
– Tamar Danielyan
Nov 29 '18 at 12:19
If you're getting approved, and not an error back from the API, then it's working. If you aren't seeing the money then you must be looking at the wrong account. Make sure you're signed in to the same sandbox account that you pulled the API credentials from as the seller account.
– Drew Angell
Nov 29 '18 at 21:02
No, that doesn't help. I've added /execute too, now I get "state":"approved", but payment still doesn't made.
– Tamar Danielyan
Nov 29 '18 at 10:12
No, that doesn't help. I've added /execute too, now I get "state":"approved", but payment still doesn't made.
– Tamar Danielyan
Nov 29 '18 at 10:12
I've edited question, there is how the function looks like.
– Tamar Danielyan
Nov 29 '18 at 11:37
I've edited question, there is how the function looks like.
– Tamar Danielyan
Nov 29 '18 at 11:37
Maybe problem occures when I create payment? I create it in this way:
$curl = curl_init("https://api.sandbox.paypal.com/v1/payments/payment/PAYID-LP73NDI44T29238WB1316137"); curl_setopt($curl, CURLOPT_POST, false); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_HEADER, false); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_HTTPHEADER, array( 'Authorization: Bearer ' . $accessToken, 'Accept: application/json', 'Content-Type: application/json' )); $response = curl_exec($curl);
– Tamar Danielyan
Nov 29 '18 at 12:08
Maybe problem occures when I create payment? I create it in this way:
$curl = curl_init("https://api.sandbox.paypal.com/v1/payments/payment/PAYID-LP73NDI44T29238WB1316137"); curl_setopt($curl, CURLOPT_POST, false); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_HEADER, false); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_HTTPHEADER, array( 'Authorization: Bearer ' . $accessToken, 'Accept: application/json', 'Content-Type: application/json' )); $response = curl_exec($curl);
– Tamar Danielyan
Nov 29 '18 at 12:08
if I have errors in "create" or "execute" functions, then why I get approved. I think maybe curl_setopt($curl, CURLOPT_POST, false); have to get true value, but then I get error "Failed to load resource: the server responded with a status of 500 () props.js:246 Uncaught Error: Request to post aylkerp.am/successful-payment-post-notify failed with 500 error. Correlation id: unknown { "message": "Server Error" } at XMLHttpRequest.<anonymous> (http.js:114)"; <aylkerp.am/successful-payment-post-notify> is my EXECUTE_URL: url in "paypal.Button.render" function
– Tamar Danielyan
Nov 29 '18 at 12:19
if I have errors in "create" or "execute" functions, then why I get approved. I think maybe curl_setopt($curl, CURLOPT_POST, false); have to get true value, but then I get error "Failed to load resource: the server responded with a status of 500 () props.js:246 Uncaught Error: Request to post aylkerp.am/successful-payment-post-notify failed with 500 error. Correlation id: unknown { "message": "Server Error" } at XMLHttpRequest.<anonymous> (http.js:114)"; <aylkerp.am/successful-payment-post-notify> is my EXECUTE_URL: url in "paypal.Button.render" function
– Tamar Danielyan
Nov 29 '18 at 12:19
If you're getting approved, and not an error back from the API, then it's working. If you aren't seeing the money then you must be looking at the wrong account. Make sure you're signed in to the same sandbox account that you pulled the API credentials from as the seller account.
– Drew Angell
Nov 29 '18 at 21:02
If you're getting approved, and not an error back from the API, then it's working. If you aren't seeing the money then you must be looking at the wrong account. Make sure you're signed in to the same sandbox account that you pulled the API credentials from as the seller account.
– Drew Angell
Nov 29 '18 at 21:02
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%2f53427577%2fpaypal-transaction-to-me-is-verified-by-api-but-my-account-balance-is-0-00%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