Obtain Access Token
Use this request to obtain a JWT access token for authenticating with the API.
Token Endpoint: https://auth.interactsms.com/token
Grant Type: password
Content-Type: application/x-www-form-urlencoded
Request body form fields:
grant_type=passwordusername=your_usernamepassword=your_strong_passwordclient_id=ismstoken
Successful Response will include:
access_token— JWT to be passed inAuthorization: Bearer {token}expires_in— Time in seconds before token expiresrefresh_token— Token used to obtain a new access tokenscope,session_state, etc.
This path is included for documentation only. Make actual requests directly to https://auth.interactsms.com/token.
Body
Response
JWT Token Response Body
JWT access token to pass in the Authorization header.
Number of seconds before the access token expires.
Token used to obtain a new access token.
Bearer Number of seconds before the refresh token expires.
Space-delimited scopes associated with the token.