POST api/UpdateVacancy
Request Information
URI Parameters
None.
Body Parameters
vacancy| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| name | string |
None. |
|
| description | string |
None. |
|
| active | boolean |
None. |
|
| tm | date |
None. |
|
| publicatiedatum | date |
None. |
|
| imagefilename | string |
None. |
|
| contenttype | string |
None. |
|
| imagedata | Collection of byte |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"name": "sample string 2",
"description": "sample string 3",
"active": true,
"tm": "2026-02-10T12:08:43.0263049+01:00",
"publicatiedatum": "2026-02-10T12:08:43.0263049+01:00",
"imagefilename": "sample string 4",
"contenttype": "sample string 5",
"imagedata": "QEA="
}
application/xml, text/xml
Sample:
<vacancy xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CryptoApi.DAL"> <active>true</active> <contenttype>sample string 5</contenttype> <description>sample string 3</description> <id>1</id> <imagedata>QEA=</imagedata> <imagefilename>sample string 4</imagefilename> <name>sample string 2</name> <publicatiedatum>2026-02-10T12:08:43.0263049+01:00</publicatiedatum> <tm>2026-02-10T12:08:43.0263049+01:00</tm> </vacancy>
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.