Stay organized with collections
Save and categorize content based on your preferences.
AI-generated Key Takeaways
The State enum describes the different operational statuses an account can have within a program.
Accounts can be APPROVED, DISAPPROVED, WARNING, UNDER_REVIEW, PENDING_REVIEW, or ONBOARDING, in addition to an unspecified state.
DISAPPROVED accounts have critical issues requiring resolution, detailed in the accountstatuses API, while WARNING accounts have issues that may lead to disapproval later.
ONBOARDING accounts need valid offers uploaded to complete the onboarding process.
Different values of enum State.
Enums
STATE_UNSPECIFIED
State is not known.
APPROVED
If the account has no issues and review is completed successfully.
DISAPPROVED
There are one or more issues that needs to be resolved for account to be active for the program. Detailed list of account issues are available in accountstatuses API.
WARNING
If account has issues but offers are servable. Some of the issue can make account DISAPPROVED after a certain deadline.
UNDER_REVIEW
Account is under review.
PENDING_REVIEW
Account is waiting for review to start.
ONBOARDING
Program is currently onboarding. Upload valid offers to complete onboarding.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-16 UTC."],[],["The enum `State` defines possible account statuses. `STATE_UNSPECIFIED` indicates an unknown state. `APPROVED` means the account is issue-free. `DISAPPROVED` signifies unresolved issues, with details available via the `accountstatuses` API. `WARNING` denotes issues that may lead to disapproval. `UNDER_REVIEW` indicates the account is being reviewed, while `PENDING_REVIEW` means the review has not started. `ONBOARDING` represents the active onboarding process, requiring offer uploads.\n"]]