Retrieve an access token. Authenticate with HTTP Basic using the credentials supplied by Clubfit; the client sends Authorization: Basic <base64(username:password)>. The returned token is used as the bearer token on all subsequent calls.
Security
BasicAuth
POST
curl -i -X POST \
-u '<username>:<password>' \
https://api.clubfit.net.au/v1/tokenThe response will contain the access token you will need to access the subsequent API calls.
Response
{ "AccessToken": "jashjgfafgdsljlfjsadjfsjflijsdlfdsxkzlcmlzxkcm", "ExpiresIn": 3600, "TokenType": "Bearer" }