Type alias TokenResponse

TokenResponse: {
    access_token: string;
    id: string;
    instance_url: string;
    issued_at: string;
    refresh_token?: string;
    sfdc_community_id?: string;
    sfdc_community_url?: string;
    signature: string;
    token_type: "Bearer";
}

Type declaration

  • access_token: string
  • id: string

    Identity URL

    The format of the URL is https://login.salesforce.com/id/orgID/userID.

  • instance_url: string
  • issued_at: string
  • Optional refresh_token?: string
  • Optional sfdc_community_id?: string
  • Optional sfdc_community_url?: string
  • signature: string
  • token_type: "Bearer"