Variable createLoginRequest
createLoginRequest: (
input: {
acsURL: string;
clientId: string;
redirectURI: string;
state?: string;
tenantId: string;
userContext?: Record<string, any>;
},
) => Promise<
| { redirectURI: string; status: "OK" }
| { status: "INVALID_CLIENT_ERROR" },
> = Wrapper.createLoginRequest
Type declaration
- (
input: {
acsURL: string;
clientId: string;
redirectURI: string;
state?: string;
tenantId: string;
userContext?: Record<string, any>;
},
): Promise<
| { redirectURI: string; status: "OK" }
| { status: "INVALID_CLIENT_ERROR" },
> Parameters
- input: {
acsURL: string;
clientId: string;
redirectURI: string;
state?: string;
tenantId: string;
userContext?: Record<string, any>;
}
Returns Promise<
| { redirectURI: string; status: "OK" }
| { status: "INVALID_CLIENT_ERROR" },
>