- Certificates GET /certificates
- Courses GET /courses
- Experts GET /experts
- Roles GET /roles
- Situations GET /situations
- Topics GET /topics
- Webinars GET /webinars GET /webinars/series
GET /experts
Gets all certificate programs
Request
URI Parameters
none
Body Parameters
none
Example
curl https://api.fedpubseminars.com/v1/experts
Response
Collection of Expert
| Name | Type |
|---|---|
| expertId | integer |
| name | string |
| title | string |
| bio | string |
| education | string |
| imageUrl | string |
| image2xUrl | string |
Example
[
{
"expertId": 1,
"name": "sample string 1",
"title": "sample string 2",
"bio": "sample string 3",
"education": "sample string 4",
"imageUrl": "sample string 5",
"image2xUrl": "sample string 6"
},
{
"expertId": 1,
"name": "sample string 1",
"title": "sample string 2",
"bio": "sample string 3",
"education": "sample string 4",
"imageUrl": "sample string 5",
"image2xUrl": "sample string 6"
}
]