Education
CRUD endpoints for a user's education
Please note that in all urls & code samples you'll need to replace:username
and :corporation
with appropriate values
Get All Education
GET
/v2/organization/:corporation/expert/:username/education
Headers
Name | Value |
---|---|
Content-Type |
|
Authorization |
|
Url
Name | Type | Description |
---|---|---|
corporation | number | Corporation ID |
username | string | Unique username |
Response
Code
Get Individual Education
GET
/v2/organization/:corporation/expert/:username/education/:id
Headers
Name | Value |
---|---|
Content-Type |
|
Authorization |
|
Url
Name | Type | Description |
---|---|---|
corporation | number | Corporation ID |
username | string | Unique username |
id | number | Education ID |
Response
Code
Create Education
POST
/v2/organization/:corporation/expert/:username/education
Headers
Name | Value |
---|---|
Content-Type |
|
Authorization |
|
Url
Name | Type | Description |
---|---|---|
corporation | number | Corporation ID |
username | string | Unique username |
Body
Name | Type | Description |
---|---|---|
institution* | string | Institution Name |
degree* | string | Degree Name |
major | string | Major |
description | string | Description |
date | string | Graduation date(i.e. '2004') |
Response
Code
Update Education
PUT
/v2/organization/:corporation/expert/:username/education/:id
Headers
Name | Value |
---|---|
Content-Type |
|
Authorization |
|
Url
Name | Type | Description |
---|---|---|
corporation | number | Corporation ID |
username | string | Unique username |
id | number | Education ID |
Body
Name | Type | Description |
---|---|---|
institution* | string | Institution Name |
degree* | string | Degree Name |
major | string | Major |
description | string | Description |
date | string | Graduation date(i.e. '2004') |
Response
Code
Delete Education
DELETE
/v2/organization/:corporation/expert/:username/education/:id
Headers
Name | Value |
---|---|
Content-Type |
|
Authorization |
|
Url
Name | Type | Description |
---|---|---|
corporation | number | Corporation ID |
username | string | Unique username |
id | number | Education ID |
Response
Code
Last updated