Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 456 Bytes

File metadata and controls

23 lines (17 loc) · 456 Bytes
description Automatically generated file. DO NOT MODIFY
const options = {
	authProvider,
};

const client = Client.init(options);

const qrCode = {
  '@odata.type': '#microsoft.graph.qrCode',
  expireDateTime: '2025-12-19T12:00:00Z',
  startDateTime: '2025-01-01T12:00:00Z',
};

await client.api('/users/7c4999f7-9c25-4f8e-8b84-766eb28a1b49/authentication/qrCodePinMethod/standardQRCode')
	.version('beta')
	.update(qrCode);