Skip to main content

CreateHsaUserPayload

The result of creating a new HSA user. On success, returns a token that the client will use to initialize the user's password.

type CreateHsaUserPayload {
brand: ID!
status: CreateHsaUserStatus!
token: String
}

Fields

CreateHsaUserPayload.brand ● ID! non-null scalar

The brand associated with the user's registration. Primarily used to redirect when trying to create an account that's already been created (and just needs to be claimed).

CreateHsaUserPayload.status ● CreateHsaUserStatus! non-null enum

The status of the request, used primarily to classify error states.

CreateHsaUserPayload.token ● String scalar

A token that can be used to set the password for the user. Present when status = CREATED.

Returned by

createHsaUser mutation