POST Api/Applicant/ImportantInfo/User/{userId}/Applicant/{applicantId}
Posts the important info value of the applicant
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| applicantId |
The id of the applicant. |
integer |
Required |
| userId |
User Id |
integer |
Required |
Body Parameters
Important Info object.
ApplicantImportantInfoViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Body | string |
None. |
|
| UserId | integer |
None. |
|
| LastChange | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Body": "sample string 1",
"UserId": 2,
"LastChange": "2025-11-08T08:21:09.7342334+01:00"
}
application/xml, text/xml
Sample:
<ApplicantImportantInfoViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ePunkt.Api.Server.Requests"> <Body>sample string 1</Body> <LastChange>2025-11-08T08:21:09.7342334+01:00</LastChange> <UserId>2</UserId> </ApplicantImportantInfoViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.