Authentication
Create Access Token
Create a new short-lived access token by validating your client_id
and client_secret
. The access_token
is to be forwarded with all subsequent requests as Authorization: Bearer {access_token}
HTTP header. When the token expires you must regenerate your access_token
. The client_id
and client_secret
can be supplied as POST body parameters, or as a HTTP basic auth header.
POST
Authorizations
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Headers
Body
application/x-www-form-urlencoded
Response
201
application/json
Generated access token.
MoneyKit API access token.