Secure Payments API POST Authenticate
General
This request will generate a set of tokens to use for subsequent requests.
How To
To generate tokens, send a POST request to the endpoint: authenticate
Request:
curl -X POST --header 'Content-Type: application/json' --header 'Accept: application/json' -d '{
"password": "AGood-Password-01",
"username": "sample@email.com"
}' 'https://pciwallet.simnang.com/api/authenticate'
Response:
{
"token": "your token here",
"secret": "your secret here"
}