I've created a provisioning script and a client wrapper for the Bullet Train API which throws an exception when attempting to parse the response from `/api/v1/users/init/` as it seems to only return a text body of, "ADMIN USER CREATED". Ideally, when the `Accept` header is set to `application/json`, the API could return either a `201 Created` response with no body or the same message as a JSON payload: ``` { "adminUserCreated": true } ```