POST api/applicant/professional-training/create

Request Information

URI Parameters

None.

Body Parameters

RecProfessionalTrainingDTOW
NameDescriptionTypeAdditional information
title

string

Required

Max length: 100

description

string

Max length: 200

year_recieved

date

Required

location_state_id

integer

Required

location_country_id

integer

Required

type

integer

Required

Request Formats

application/json, text/json

Sample:
{
  "title": "sample string 1",
  "description": "sample string 2",
  "year_recieved": "2025-09-07T13:36:07.6362305+00:00",
  "location_state_id": 4,
  "location_country_id": 5,
  "type": 6
}

application/xml, text/xml

Sample:
<RecProfessionalTrainingDTOW xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Xceed365EngageApi.core.DTOs.Writable">
  <description>sample string 2</description>
  <location_country_id>5</location_country_id>
  <location_state_id>4</location_state_id>
  <title>sample string 1</title>
  <type>6</type>
  <year_recieved>2025-09-07T13:36:07.6362305+00:00</year_recieved>
</RecProfessionalTrainingDTOW>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'RecProfessionalTrainingDTOW'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.