getAccount( )


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.

Authentication

You can only call this method when authenticated as a Wix app or Wix user identity.

Permissions
Manage Loyalty
Read Loyalty
Learn more about app permissions.
Method Declaration
Copy
function getAccount(_id: string): Promise<LoyaltyAccount>;
Method Parameters
_idstringRequired

ID of the account to retrieve.

Returns
Return Type:Promise<LoyaltyAccount>
JavaScript
import { accounts } from "@wix/loyalty"; async function getAccount(id) { const response = await accounts.getAccount(id); }
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?