From 7138965758c463861b2cd43f635093f800247723 Mon Sep 17 00:00:00 2001 From: Robert Adams Date: Wed, 21 Apr 2021 11:03:17 -0700 Subject: [PATCH] Add documentation on what's returned when an account is created. Includes information on whether account is awaiting verification. --- docs/API-Accounts.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/API-Accounts.md b/docs/API-Accounts.md index b06f7eb4..e3e016df 100755 --- a/docs/API-Accounts.md +++ b/docs/API-Accounts.md @@ -243,6 +243,12 @@ A successful creation, will return: ``` { "status": "success" + "data": { + "accountId": stringAccountId, + "username": stringUsername, + "accountIsActive": true/false, + "accountAwaitingVerification": true/false + } } ```