Authentication
Authorization
When accessing APIs on Moneywave, an authorization token is required to securely authenticate the request. An api key and secret key is required when requesting a token. These keys are displayed under account settings after you sign-up.
There are two sets of Keys, your live key and your test key. When you are on test mode, your test keys are displayed and when you switch to live mode, your live keys are displayed. This is the same for the API base url.
Authorization Token
POST
https://staging.moneywaveapp.com/v1/merchant/verify
Get an authorization token for other API requests
Request Body
Name | Type | Description |
---|---|---|
apiKey | string | your moneywave api key |
secret | string | your moneywave api secret |
Pass the token value returned as Authorization in the header of other API requests.
Last updated