POST api/jobandnotice/postnewjob
Request Information
URI Parameters
None.
Body Parameters
JobInputViewModelName | Description | Type | Additional information |
---|---|---|---|
ID | globally unique identifier |
None. |
|
Title | string |
None. |
|
Description | string |
None. |
|
DatePosted | date |
None. |
|
DateDisplayUntil | date |
None. |
|
Location | string |
None. |
|
Reference | string |
None. |
|
Company | string |
None. |
|
ContactName | string |
None. |
|
ContactNumber | string |
None. |
|
ContactEmail | string |
None. |
|
RateSalaryId | globally unique identifier |
None. |
|
UserID | globally unique identifier |
None. |
|
JobTypeId | globally unique identifier |
None. |
|
Disciplines | Collection of globally unique identifier |
None. |
|
IsJobFromInternalEmployer | boolean |
None. |
|
VoucherId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "ID": "cc94f250-06d9-4b82-94b4-4e5f84c5032c", "Title": "sample string 2", "Description": "sample string 3", "DatePosted": "2025-08-24T00:25:30.2911454+02:00", "DateDisplayUntil": "2025-08-24T00:25:30.2911454+02:00", "Location": "sample string 6", "Reference": "sample string 7", "Company": "sample string 8", "ContactName": "sample string 9", "ContactNumber": "sample string 10", "ContactEmail": "sample string 11", "RateSalaryId": "b71b701c-30bd-43ac-a83b-a6b8c16bb421", "UserID": "a4c00142-e0ff-4913-a01d-7ebf8e76a18a", "JobTypeId": "5b878358-c652-4600-9701-adf667a7e0ad", "Disciplines": [ "0d3d9f0b-0b78-45a2-96c0-a16c2a1ad041", "61cf0a30-146f-463d-8897-88608cc893cb" ], "IsJobFromInternalEmployer": true, "VoucherId": "a9642719-5f4c-401d-8b13-ce41513b6cda" }
application/xml, text/xml
Sample:
<JobInputViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.ViewModels"> <Company>sample string 8</Company> <ContactEmail>sample string 11</ContactEmail> <ContactName>sample string 9</ContactName> <ContactNumber>sample string 10</ContactNumber> <DateDisplayUntil>2025-08-24T00:25:30.2911454+02:00</DateDisplayUntil> <DatePosted>2025-08-24T00:25:30.2911454+02:00</DatePosted> <Description>sample string 3</Description> <Disciplines xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:guid>0d3d9f0b-0b78-45a2-96c0-a16c2a1ad041</d2p1:guid> <d2p1:guid>61cf0a30-146f-463d-8897-88608cc893cb</d2p1:guid> </Disciplines> <ID>cc94f250-06d9-4b82-94b4-4e5f84c5032c</ID> <IsJobFromInternalEmployer>true</IsJobFromInternalEmployer> <JobTypeId>5b878358-c652-4600-9701-adf667a7e0ad</JobTypeId> <Location>sample string 6</Location> <RateSalaryId>b71b701c-30bd-43ac-a83b-a6b8c16bb421</RateSalaryId> <Reference>sample string 7</Reference> <Title>sample string 2</Title> <UserID>a4c00142-e0ff-4913-a01d-7ebf8e76a18a</UserID> <VoucherId>a9642719-5f4c-401d-8b13-ce41513b6cda</VoucherId> </JobInputViewModel>
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.