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
Url
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));
$accessToken = urlencode('<ACCESS TOKEN>');
$url = 'https://public-api.expertfile.com/v2/organization/:corporation/expert/:username/accomplishment';
$ch = curl_init($url);
curl_setopt(
$ch,
CURLOPT_HTTPHEADER,
array('Content-Type: application/x-www-form-urlencoded', 'Authorization: Bearer ' . $accessToken)
);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
$json = json_decode($response);
if($json->success){
var_dump($json->data);
}
curl_close($ch);
curl https://public-api.expertfile.com/v2/organization/:corporation/expert/:username/accomplishment \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <ACCESS TOKEN>"
Get Individual Accomplishment
GET
/v2/organization/:corporation/expert/:username/accomplishment/:id
Headers
Url
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));
$accessToken = urlencode('<ACCESS TOKEN>');
$url = 'https://public-api.expertfile.com/v2/organization/:corporation/expert/:username/accomplishment/:id';
$ch = curl_init($url);
curl_setopt(
$ch,
CURLOPT_HTTPHEADER,
array('Content-Type: application/x-www-form-urlencoded', 'Authorization: Bearer ' . $accessToken)
);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
$json = json_decode($response);
if($json->success){
var_dump($json->data);
}
curl_close($ch);
curl -X GET https://public-api.expertfile.com/v2/organization/:corporation/expert/:username/accomplishment/:id \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <ACCESS TOKEN>"
Create Accomplishment
POST
/v2/organization/:corporation/expert/:username/accomplishment
Headers
Url
Body
Accomplishment Description
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));
$accessToken = urlencode('<ACCESS TOKEN>');
$url = 'https://public-api.expertfile.com/v2/organization/:corporation/expert/:username/accomplishment';
$data = ['title' => 'My Accomplishment Idea', 'description' => 'My accomplishment is about...', 'type' => 71];
$ch = curl_init($url);
curl_setopt(
$ch,
CURLOPT_HTTPHEADER,
array('Content-Type: application/x-www-form-urlencoded', 'Authorization: Bearer ' . $accessToken)
);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
$response = curl_exec($ch);
$json = json_decode($response);
if($json->success){
var_dump($json->data);
}
curl_close($ch);
curl -X POST https://public-api.expertfile.com/v2/organization/:corporation/expert/:username/accomplishment \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <ACCESS TOKEN>" \
-d '{"title":"My Accomplishment Idea", "description":"My accomplishment is about...", "type": 71}'
Update Accomplishment
PUT
/v2/organization/:corporation/expert/:username/accomplishment/:id
Headers
Url
Body
Accomplishment Description
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));
$accessToken = urlencode('<ACCESS TOKEN>');
$url = 'https://public-api.expertfile.com/v2/organization/:corporation/expert/:username/accomplishment/:id';
$data = ['title' => 'My Accomplishment Idea', 'description' => 'My accomplishment is about...', 'type' => 71];
$ch = curl_init($url);
curl_setopt(
$ch,
CURLOPT_HTTPHEADER,
array('Content-Type: application/x-www-form-urlencoded', 'Authorization: Bearer ' . $accessToken)
);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_PUT, http_build_query($data));
$response = curl_exec($ch);
$json = json_decode($response);
if($json->success){
var_dump($json->data);
}
curl_close($ch);
curl -X PUT https://public-api.expertfile.com/v2/organization/:corporation/expert/:username/accomplishment/:id \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <ACCESS TOKEN>" \
-d '{"title":"My Accomplishment Idea", "description":"My accomplishment is about...", "type": 71}'
Delete Accomplishment
DELETE
/v2/organization/:corporation/expert/:username/accomplishment/:id
Headers
Url
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));
$accessToken = urlencode('<ACCESS TOKEN>');
$url = 'https://public-api.expertfile.com/v2/organization/:corporation/expert/:username/accomplishment/:id';
$ch = curl_init($url);
curl_setopt(
$ch,
CURLOPT_HTTPHEADER,
array('Content-Type: application/x-www-form-urlencoded', 'Authorization: Bearer ' . $accessToken)
);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "DELETE");
$response = curl_exec($ch);
$json = json_decode($response);
if($json->success){
var_dump($json->data);
}
curl_close($ch);
curl -X DELETE https://public-api.expertfile.com/v2/organization/:corporation/expert/:username/accomplishment/:id \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <ACCESS TOKEN>"
Last updated