Account
getOnboardingProgress
Get onboarding progress
Returns the onboarding checklist progress for an organization.
Usage
const result = await api.account.getOnboardingProgress();Parameters
None.
Response
Promise<OnboardingProgress> — onboarding progress.
Example
import { PgBeamClient } from "pgbeam";
const client = new PgBeamClient({
token: "pbk_...",
baseUrl: "https://api.pgbeam.com",
});
const result = await client.api.account.getOnboardingProgress();Errors
| Status | Description |
|---|---|
| 400 | Invalid request parameters. |
| 401 | Missing or invalid authentication. |
| 403 | Operation not allowed by current plan limits. |
| 404 | Resource not found. |
| 429 | Rate limited. Try again later. |