Accomplishments

CRUD endpoints for a user's accomplishments

Please note that in all urls & code samples you'll need to replace:username and :corporation with appropriate values

Get All Accomplishments

GET /v2/organization/:corporation/expert/:username/accomplishment

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Url

NameTypeDescription

corporation

number

Corporation ID

username

string

Unique username

Response

 {
  data: [
    {
      id: 1,
      title: 'Accomplishment Title',
      description: 'Accomplishment Description',
      start: 0,
      end: null,
      type: 71
    }
  ],
  success: true
}

Code

const accessToken = `<ACCESS TOKEN>`

fetch('https://public-api.expertfile.com/v2/organization/:corporation/expert/:username/accomplishment', {
    method: 'GET',
    headers: {
        'Content-Type': 'application/x-www-form-urlencoded',
        'Authorization': `Bearer ${accessToken}`
    }
})
.then(response => response.json())
.then(json => {
    const { success, data } = json

    if (success) {
        const talks = data;
        console.log('all accomplishments', json)
    }

})
.catch(error => console.error(error));

Get Individual Accomplishment

GET /v2/organization/:corporation/expert/:username/accomplishment/:id

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Url

NameTypeDescription

corporation

number

Corporation ID

username

string

Unique username

id

number

Accomplishment ID

Response

 {
  data: [
    {
      id: 1,
      title: 'Accomplishment Title',
      description: 'Accomplishment Description',
      start: 0,
      end: null,
      type: 71
    }
  ],
  success: true
}

Code

const accessToken = `<ACCESS CODE>`

fetch('https://public-api.expertfile.com/v2/organization/:corporation/expert/:username/accomplishment/:id', {
    method: 'GET',
    headers: {
        'Content-Type': 'application/x-www-form-urlencoded',
        'Authorization': `Bearer ${accessToken}`
    }
})
.then(response => response.json())
.then(json => {
    const { success, data, error } = json

    if (success) {
        console.log('accomplishment', data)
    }

})
.catch(error => console.error(error));

Create Accomplishment

POST /v2/organization/:corporation/expert/:username/accomplishment

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Url

NameTypeDescription

corporation

number

Corporation ID

username

string

Unique username

Body

NameTypeDescription

title*

string

Accomplishment Title

description*

string

Accomplishment Description

start

unix timestamp

Accomplishment date

type

number

Accomplishment ID(71 for 'professional' and 73 for 'personal')

Response

{ 
    data: { 
        id: 1
    }, 
    success: true 
}

Code

const data = new URLSearchParams();
const accessToken = `<ACCESS TOKEN>`

data.append('title', 'My Accomplishment Idea');
data.append('description', 'My accomplishment is about...');
data.append('type', 71);

fetch('https://public-api.expertfile.com/v2/organization/:corporation/expert/:username/accomplishment', {
    method: 'POST',
    headers: {
        'Content-Type': 'application/x-www-form-urlencoded',
        'Authorization': `Bearer ${accessToken}`
    },
    body: data
})
.then(response => response.json())
.then(json => {
    const { success, data, error } = json

    if (success) {
        const { id } = data
        console.log('New accomplishment id', id)
    }

})
.catch(error => console.error(error));

Update Accomplishment

PUT /v2/organization/:corporation/expert/:username/accomplishment/:id

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Url

NameTypeDescription

corporation

number

Corporation ID

username

string

Unique username

id

number

Accomplishment ID

Body

NameTypeDescription

title*

string

Accomplishment Title

description*

string

Accomplishment Description

start

unix timestamp

Accomplishment date

type

number

Sample Talk Type ID(71 for 'professional' and 73 for 'personal')

Response

{ 
    data: { 
        id: 1, 
        updated: true 
    }, 
    success: true 
}

Code

const data = new URLSearchParams();
const accessToken = `<ACCESS TOKEN>`

data.append('title', 'My Accomplishment Idea');
data.append('description', 'My accomplishment is about...');
data.append('type', 71);

fetch('https://public-api.expertfile.com/v2/organization/:corporation/expert/:username/accomplishment/:id', {
    method: 'PUT',
    headers: {
        'Content-Type': 'application/x-www-form-urlencoded',
        'Authorization': `Bearer ${accessToken}`
    },
    body: data
})
.then(response => response.json())
.then(json => {
    const { success, data, error } = json

    if (success) {
        const { id } = data
        console.log('Updated accomplishment id', id)
    }

})
.catch(error => console.error(error));

Delete Accomplishment

DELETE /v2/organization/:corporation/expert/:username/accomplishment/:id

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Url

NameTypeDescription

corporation

number

Corporation ID

username

string

Unique username

id

number

Accomplishment ID

Response

{ 
    data: { 
        deleted: true, 
        id: 1 
    }, 
    success: true 
}

Code

const accessToken = `<ACCESS TOKEN>`

fetch('https://public-api.expertfile.com/v2/organization/:corporation/expert/:username/accomplishment/:id', {
    method: 'DELETE',
    headers: {
        'Content-Type': 'application/x-www-form-urlencoded',
        'Authorization': `Bearer ${accessToken}`
    }
})
.then(response => response.json())
.then(json => {
    const { success, data, error } = json

    if (success) {
        const { id } = data
        console.log('Deleted accomplishment id', id)
    }

})
.catch(error => console.error(error));

Last updated