We use OAuth 2.0 to authenticate and authorize access to our API. This documentation will guide you through the authentication process.
https://cloud.volttime.com/oauth/authorize
https://cloud.volttime.com/oauth/token
client_id
: Your application’s client ID.redirect_uri
: The URL to which the user will be redirected after authorization. This should be a URL within your application.response_type
: Set to “code” to request an authorization code.scope
: Define the specific permissions you require for accessing resources.redirect_uri
, and an authorization code will be included in the URL as a query parameter.
redirect_uri
matches the one you have supplied to us.client_id
: Your application’s client ID.client_secret
: Your application’s client secret.grant_type
: Set to “authorization_code.”code
: The authorization code received in the previous step.redirect_uri
: The same redirect URI used in the authorization request.Authorization
header of your API requests.
Authorization
header of your HTTP requests as follows:
YOUR_PERSONAL_ACCESS_TOKEN
with the actual token you generated. This token will authenticate your requests and provide the necessary permissions as configured during token creation.