Skip to content

Latest commit

 

History

History
48 lines (42 loc) · 1.04 KB

File metadata and controls

48 lines (42 loc) · 1.04 KB
description Automatically generated file. DO NOT MODIFY
const options = {
	authProvider,
};

const client = Client.init(options);

const educationalActivity = {
  completionMonthYear: 'Date',
  endMonthYear: 'Date',
  institution: {
    description: null,
    displayName: 'Colorado State University',
    location: {
      type: 'business',
      postOfficeBox: null,
      street: '12000 E Prospect Rd',
      city: 'Fort Collins',
      state: 'Colorado',
      countryOrRegion: 'USA',
      postalCode: '80525'
    },
    webUrl: 'https://www.colostate.edu'
  },
  program: {
    abbreviation: 'MBA',
    activities: null,
    awards: null,
    description: 'Master of Business Administration with a major in Entreprenuership and Finance.',
    displayName: 'Master of Business Administration',
    fieldsOfStudy: null,
    grade: '3.9',
    notes: null,
    webUrl: 'https://biz.colostate.edu'
  },
  startMonthYear: 'Date'
};

await client.api('/me/profile/educationalActivities')
	.version('beta')
	.post(educationalActivity);