Retrieve WorldPay auth token via the Shopify API - shopify

We're using Shopify with WorldPay as a payment processor. Is there any way of getting the WorldPay authorization token for an order via the Shopify API?

Payment gateway info (aside from the name of the gateway) is excluded from the API, primarily for security reasons.

Related

Using Shopify Store Customer Account to Authenticate Node JS API

I'm building a NodeJS API + Android/IOS Apps connecting to that API.
Additionally, I have a Shopify store where customers register and purchase products.
Now, I need to set up auth flow on these mobile APPS, which will redirect to the Shopify store, authenticate using customer account credentials, allow that customer to log in with APP, and allow API access with that authentication.
API Auth layer developed with JWT authentication for the moment which is working without shopify interaction.
Is there anyone who has done something like this with Shopify customer accounts?

is it possible to get portfolio balance data from any Coinbase account without using api?

is it possible to get portfolio balance data from any Coinbase account using only email or without using coinbase api.
please help me. i need this method to make an software . that help me to show my . all account balances without any api.
No. Account information is not visible without signing the request with an API key or using the authorization address and OAuth2. Both options require the API
api-key-authentication
API Key authentication should only be used to access your own account. If your application requires access to other Coinbase users' accounts, do not use API Key. To securely access other Coinbase users' accounts, use Sign in with Coinbase (OAuth2)
OAuth2
The Coinbase API allows developers to use the OAuth2 protocol to allow a Coinbase user to grant a 3rd party application full or partial access to his/her account, without sharing the account’s API key or login credentials. It is a slightly more complex integration than the API Key authentication method, but is more flexible. OAuth2 works well for web applications, as well as desktop and mobile apps.

Registration Endpoint in Xero API

After I explored the API from XERO, I cannot find the Endpoint that is used for registration.
Where can I find the registration endpoint in Xero API?
If you're trying to build an integration you first have to sign up as a xero user then log in to app.xero.com to create your app and get your credentials.

Get Paypal API Credentials from SDK

I have different questions about Paypal API Credentials
Is it possible to retrieve User API credentials (Classic API Signature) for a paypal business account from code?, maybe calling a method of the PayPal SDK to access his profile?. I want to code something that checks if Merchant does not have API credentials, in case that he has them, store them in my local database for payment operations and if not, maybe redirect him to a video explaining how to do this.
Are those credentials different for each merchant account?
Is there a way to have the same credentials for different users using classic API?. I know Rest API Allows to do this (with client id and secret), but it does not allow me to do embedded payments, so that's why I'm using the classic API.
Thanks a lot
You can't do that. The API doesn't have anything like that. Either you need to post API calls using their API credentials or have them authorize your API username to run calls on their behald (where you pass their primary email address in the API calls).

Paypal Implicit Payments without redirecting to Paypal in paypal api c# asp.net

I want to generate pay request in paypal using Paypal Api. I am using the following
reference link https://www.x.com/developers/paypal/documentation-tools/api/pay-api-operation
But they people have not explained how to use that code in c#. I want to give a button to user and he'll fill the oauth key and payment request will be sent to merchant account.
Please suggest
Sample codes are here
https://www.x.com/developers/paypal/documentation-tools/paypal-code-samples
PayPal provides Web Service API for the following methods -
1) Website Payments Pro
2) Payflow Gateway
3) PayPal Express Checkout
Updated - 9/11/2014
PayPal provides REST API now.
In addition, sample code is moved to GitHub