Whiplash V2 Generate Access Token
Action used to generate a new access token using the V2 Whiplash API.
To know more about this access token and how to get the refresh token, read more here.
The returned access data is in this format:
{
access_token: 'STRING',
token_type: 'Bearer',
expires_in: #### (usually 7199),
refresh_token: 'STRING',
scope: 'user_manage',
created_at: UNIX TIMESTAMP
}
Inputs
Name | Type | Description |
---|---|---|
Whiplash Client Id | String | Whiplash Client Id |
Whiplash Client Secret | SensitiveString | Whiplash Client Secret |
Whiplash Refresh Token | SensitiveString | Whiplash Refresh Token |
Customer Email | String | Customer Email to unsubscribe |
Outputs
Name | Type | Description |
---|---|---|
Success | Boolean | Whether the access token was generated successfully |
Access Data | Object | Whiplash data returned |
Updated 10 months ago