Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 426 Bytes

File metadata and controls

26 lines (20 loc) · 426 Bytes
description Automatically generated file. DO NOT MODIFY
const options = {
	authProvider,
};

const client = Client.init(options);

const personInterest = {
  categories: [
    'Sports'
  ],
  description: 'World\'s greatest football club',
  displayName: 'Chelsea FC',
  webUrl: 'https://www.chelseafc.com'
};

await client.api('/me/profile/interests')
	.version('beta')
	.post(personInterest);