Research Grants
CRUD endpoints for a user's research grants
Please note that in all urls & code samples you'll need to replace:username
and :corporation
with appropriate values
Get All Research Grants
GET
/v2/organization/:corporation/expert/:username/researchgrant
Headers
Url
Response
{
data: [
{
id: 1,
title: 'Research Grant Title',
organization: 'Organization',
url: 'https://grant.com',
details: 'Details',
date: 0,
amount: '10',
currency: '$'
},
],
success: true
}
Code
const data = new URLSearchParams();
const accessToken = `<ACCESS TOKEN>`
fetch('https://public-api.expertfile.com/v2/organization/:corporation/expert/:username/researchgrant', {
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 grants = data;
console.log('all grants', grants)
}
})
.catch(error => console.error(error));
$accessToken = urlencode('<ACCESS TOKEN>');
$url = 'https://public-api.expertfile.com/v2/organization/:corporation/expert/:username/researchgrant';
$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/researchgrant \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <ACCESS TOKEN>"
Get Individual Research Grant
GET
/v2/organization/:corporation/expert/:username/researchgrant/:id
Headers
Url
Response
{
data: [
{
id: 1,
title: 'Research Grant Title',
organization: 'Organization',
url: 'https://grant.com',
details: 'Details',
date: 0,
amount: '10',
currency: '$'
},
],
success: true
}
Code
const accessToken = `<ACCESS CODE>`
fetch('https://public-api.expertfile.com/v2/organization/:corporation/expert/:username/researchgrant/: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('grant', data)
}
})
.catch(error => console.error(error));
$accessToken = urlencode('<ACCESS TOKEN>');
$url = 'https://public-api.expertfile.com/v2/organization/:corporation/expert/:username/researchgrant/: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/researchgrant/:id \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <ACCESS TOKEN>"
Create Research Grant
POST
/v2/organization/:corporation/expert/:username/researchgrant
Headers
Url
Body
Response
{
data: {
id: 1
},
success: true
}
Code
const data = new URLSearchParams();
const accessToken = `<ACCESS TOKEN>`
data.append('title', 'Grant title');
data.append('organization', 'Grant organization');
data.append('details', 'Grant details...');
data.append('amount', '100');
data.append('currency', '$');
data.append('date', 1702530000);
data.append('url', 'https://myurl.com');
fetch('https://public-api.expertfile.com/v2/organization/:corporation/expert/:username/researchgrant', {
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 grant id', id)
}
})
.catch(error => console.error(error));
$accessToken = urlencode('<ACCESS TOKEN>');
$url = 'https://public-api.expertfile.com/v2/organization/:corporation/expert/:username/researchgrant';
$data = ['title' => 'Grant title', 'organization' => 'Grant organization', 'details' => 'Grant details...','amount' => '100','currency' => '$', 'date' => 1702530000, 'url' => 'https://myurl.com'];
$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/researchgrant \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <ACCESS TOKEN>" \
-d '{"title": "Grant title", "organization": "Grant organization", "details": "Grant details...", "amount": "100", "currency": "$", "date": 1702530000, "url": "https://myurl.com"}'
Update Research Grant
PUT
/v2/organization/:corporation/expert/:username/researchgrant/:id
Headers
Url
Body
Response
{
data: {
id: 1,
updated: true
},
success: true
}
Code
const data = new URLSearchParams();
const accessToken = `<ACCESS TOKEN>`
data.append('title', 'Grant title');
data.append('organization', 'Grant organization');
data.append('details', 'Grant details...');
data.append('amount', '100');
data.append('currency', '$');
data.append('date', 1702530000);
data.append('url', 'https://myurl.com');
fetch('https://public-api.expertfile.com/v2/organization/:corporation/expert/:username/researchgrant/: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('New patent id', id)
}
})
.catch(error => console.error(error));
$accessToken = urlencode('<ACCESS TOKEN>');
$url = 'https://public-api.expertfile.com/v2/organization/:corporation/expert/:username/researchgrant/:id';
$data = ['title' => 'Grant title', 'organization' => 'Grant organization', 'details' => 'Grant details...','amount' => '100','currency' => '$', 'date' => 1702530000, 'url' => 'https://myurl.com'];
$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/researchgrant/:id \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <ACCESS TOKEN>" \
-d '{"title": "Grant title", "organization": "Grant organization", "details": "Grant details...", "amount": "100", "currency": "$", "date": 1702530000, "url": "https://myurl.com"}'
Delete Research Grant
DELETE
/v2/organization/:corporation/expert/:username/researchgrant/: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/researchgrant/: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 grant id', id)
}
})
.catch(error => console.error(error));
$accessToken = urlencode('<ACCESS TOKEN>');
$url = 'https://public-api.expertfile.com/v2/organization/:corporation/expert/:username/testimonial/: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/testimonial/:id \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <ACCESS TOKEN>"
Last updated