Candidates

Create education

POST
/api/public/v3/recruitment/candidates/{candidate_id}/educations

Path Parameters

candidate_id*integer

Request Body

application/x-www-form-urlencoded

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://example.com/api/public/v3/recruitment/candidates/0/educations" \  -H "Content-Type: application/x-www-form-urlencoded" \  -d 'school=string&name=string&subject=string&from_year=string&to_year=string&description=string'
{  "data": {    "id": 0,    "school": "string",    "name": "string",    "from_year": 0,    "to_year": 0,    "subject": "string",    "description": "string"  }}