Testimonials

CRUD endpoints for a user's testimonial

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

Get All Testimonials

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

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Url

NameTypeDescription

corporation

number

Corporation ID

username

string

Unique username

Response

 {
  data: [
    {
      id: 1,
      name: '',
      title: '',
      company: '',
      url: '',
      recommendation: ''
    },
  ],
  success: true
}

Code

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

fetch('https://public-api.expertfile.com/v2/organization/:corporation/expert/:username/testimonial', {
    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 testimonial = data;
        console.log('all testimonial', testimonial)
    }

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

Get Individual Testimonial

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

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Url

NameTypeDescription

corporation

number

Corporation ID

username

string

Unique username

id

number

Testimonial ID

Response

 {
  data: [
    {
      id: 1,
      name: '',
      title: '',
      company: '',
      url: '',
      recommendation: '',
    },
  ],
  success: true
}

Code

const accessToken = `<ACCESS CODE>`

fetch('https://public-api.expertfile.com/v2/organization/:corporation/expert/:username/testimonial/: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('testimonial', data)
    }

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

Create Testimonial

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

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Url

NameTypeDescription

corporation

number

Corporation ID

username

string

Unique username

Body

NameTypeDescription

name*

string

Name of Person

title*

string

Title of Person

company*

string

Company of Person

recommendation*

string

Recommendation Text

url

string

Url of Person's Company

Response

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

Code

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

data.append('name', 'Name of Recommender');
data.append('title', 'Title of Recommender');
data.append('company', 'Company of Recommender');
data.append('recommendation', 'This is my recommendation')
data.append('url', 'https://myurl.com')

fetch('https://public-api.expertfile.com/v2/organization/:corporation/expert/:username/testimonial', {
    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 testimonial id', id)
    }

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

Update Testimonial

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

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Url

NameTypeDescription

corporation

number

Corporation ID

username

string

Unique username

id

number

Testimonial ID

Body

NameTypeDescription

name*

string

Name of Person

title*

string

Title of Person

company*

string

Company of Person

recommendation*

string

Recommendation Text

url

string

Url of Person's Company

Response

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

Code

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

data.append('name', 'Name of Recommender');
data.append('title', 'Title of Recommender');
data.append('company', 'Company of Recommender');
data.append('recommendation', 'This is my recommendation')
data.append('url', 'https://myurl.com')

fetch('https://public-api.expertfile.com/v2/organization/:corporation/expert/:username/testimonial/: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 testimonial id', id)
    }

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

Delete Testimonial

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

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Url

NameTypeDescription

corporation

number

Corporation ID

username

string

Unique username

id

number

Testimonial 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/testimonial/: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 testimonial id', id)
    }

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

Last updated