Get Secret Key
A secret key is generated for every account that is used in api requests.
Host
Test: https://mob.paymentplug.com/
Live: https://wallet.paymentplug.com/
The POST request will be send over HTTPS to the accountServices/AccountService/getSecretKey endpoint.
Sample Request
Sample Response
Verification Hash has to be calculated with following combination using SHA256 algorithm and need to be send along with the authentication parameters in each server-to-server request. Parameters required for creating hash are :
< seckey >< customerId >< walletOwnerId>
Sample code
Request Parameters
This reference lists all the standard flow parameters to be send in request.
Parameter | Description | Format | Required |
---|---|---|---|
customerId | Generated unique customer id on per user sign up. | A255 | Yes |
walletOwnerId | Provided by Paymentplug Unique id. | N20 [0-9] |
Yes |
verificationHash | Verification Hash has collected combination of parameters. Should be generated using SHA256 Algorithm | String | Yes |
token | Provided by Paymentplug Unique token. | String | Yes |
Response Parameters
This reference list lists all the standard flow parameters to be received in response.
Parameter | Description | Format | Required |
---|---|---|---|
customerId | Generated unique customer id on per user sign up. | N50 [0-9]{50} |
Yes |
secKey | Generated secret key for per user. | String | Yes |
status | Response status (SUCCESS/FAILED). | A [A-Z] |
Yes |
responseCode | Response code | [a-zA-Z0-9] | Yes |
List of response code from API
Response Code | Message |
---|---|
SUCCESS | Successful Login |
FAILED | Fail to login |
Wrong Password | Provided wrong password |
NOT_AVAILABLE | This User is not registered |
INVALID TOKEN | Invalid Token access |
All fields are mandatory | Each and every field is mandatory |