Send One-time Login Link
Send a one-time login link to the customer's account at PayPro Global.
Post
https://store.payproglobal.com/api/Customers/SendOnetimeLoginEmailRequest Parameters
application/jsonOnetimeLoginEmailRequestModel
objectcustomerEmail
stringconditional
The customer's email address.
(required if orderId is not passed).
(required if orderId is not passed).
orderId
integerconditional
The order ID that was assigned to the customer's purchase.
(required if customerEmail is not passed)
(required if customerEmail is not passed)
vendorAccountId
integerrequired
The vendor account ID identifies your PayPro Global account.
It can be found in Account settings > Business info.
It can be found in Account settings > Business info.
apiSecretKey
stringrequired
The vendor account API secret key is a unique key
that was generated specifically for authenticating API requests.
It can be found in Store settings > General settings > Integration tab.
that was generated specifically for authenticating API requests.
It can be found in Store settings > General settings > Integration tab.
Response Parameters
application/jsonOnetimeLoginEmailResponseModel
objectrequest
objectcustomerEmail
stringThe customer's email address.
orderId
integerThe order ID that was assigned to the customer's purchase.
vendorAccountId
integerThe vendor account ID identifies your PayPro Global account.
It can be found in Account settings > Business info.
It can be found in Account settings > Business info.
apiSecretKey
stringThe vendor account API secret key is a unique key
that was generated specifically for authenticating API requests.
It can be found in Store settings > General settings > Integration tab.
that was generated specifically for authenticating API requests.
It can be found in Store settings > General settings > Integration tab.
errors
array[object]propertyWithError
stringpropertyErrorMessages
array[string]isSuccess
booleanRequest Sample
{
"customerEmail": "[email protected]",
"orderId": 12345678,
"vendorAccountId": 123456,
"apiSecretKey": "your_api_secret_key"
}
Response Sample
{
"request": {
"customerEmail": "[email protected]",
"orderId": 12345678,
"vendorAccountId": 123456,
"apiSecretKey": "your_api_secret_key"
},
"errors": [],
"isSuccess": true
}