PUT api/applicant/professional-training/update/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
RecProfessionalTrainingDTOW| Name | Description | Type | Additional 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": "2026-03-21T22:17:36.4228357+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>2026-03-21T22:17:36.4228357+00:00</year_recieved> </RecProfessionalTrainingDTOW>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.