Retrieves an account using the loyalty account ID.
The getAccount()
function returns a Promise that resolves to the specified loyalty account when it is retrieved.
You can also get an account using a secondary ID, such as a contact ID or a member ID with the getAccountBySecondaryId()
function.
Note: Only visitors with Manage Loyalty permissions can retrieve a loyalty account.
You can only call this method when authenticated as a Wix app or Wix user identity.
function getAccount(_id: string): Promise<LoyaltyAccount>;
ID of the account to retrieve.
import { accounts } from "@wix/loyalty";
async function getAccount(id) {
const response = await accounts.getAccount(id);
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.