Interface iGenericVerifyAssetsSuccessResponse

interface iGenericVerifyAssetsSuccessResponse {
    errorMessage?: string;
    success: boolean;
}

Implemented by

Properties

errorMessage?: string
success: boolean

Success response of the verification check. Use this to determine if the verification was successful.

Status code will be 200 both if the user meets or does not meet requirements, so you must check this success field to determine the result.