Education

All endpoints related to education / degree data.

Create Education

POST https://api.yourdomain.com/v1/education/create

Create a new education

Request Body

NameTypeDescription

userId

string

Id of the user creating the education record

education

object

JSON object containing the fields and their values

{
    "success": true
    "education": {
                "id": "education001",
                }
}

The education property in the response should be an object with an id property containing the the id of the newly created education record.

Last updated