Increase.OAuthTokens.OAuthToken (Increase v1.0.0)

Copy Markdown View Source

A token that is returned to your application when a user completes the OAuth flow and may be used to authenticate requests. Learn more about OAuth [here].

Fields

  • access_token - You may use this token in place of an API key to make OAuth requests on a user's behalf.
  • group_id - The Group's identifier. A Group is the top-level organization in Increase.
  • token_type - The type of OAuth token.
  • type - A constant representing the object's type. For this resource it will always be oauth_token.

Summary

Types

t()

@type t() :: %Increase.OAuthTokens.OAuthToken{
  access_token: String.t(),
  group_id: String.t(),
  token_type: String.t(),
  type: String.t()
}