LoginRequest
Datalayer Core / LoginRequest
Interface: LoginRequest
Defined in: tech/datalayer/core/src/api/types/iam.ts:40
Request payload for user login LoginRequest
Must provide either:
- handle + password for credential-based authentication
- token for token-based authentication
Both methods cannot be used simultaneously.
Properties
handle?
optionalhandle:string
Defined in: tech/datalayer/core/src/api/types/iam.ts:42
User handle (username/email) for credential-based authentication
password?
optionalpassword:string
Defined in: tech/datalayer/core/src/api/types/iam.ts:44
User's password for credential-based authentication
token?
optionaltoken:string
Defined in: tech/datalayer/core/src/api/types/iam.ts:46
Authentication token for token-based authentication