POST api/JobPosting/Post?apiKey={apiKey}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
apiKey | string |
Required |
Body Parameters
JobRequestName | Description | Type | Additional information |
---|---|---|---|
PersonalInformation | PersonalInformation |
None. |
|
VisaType | VisaType |
None. |
|
TotalExperience | integer |
None. |
|
Attachment | Attachment |
None. |
|
JobPostingID | globally unique identifier |
None. |
|
JobPostingTitle | string |
None. |
|
JobRequestStatus | JobRequestStatus |
None. |
|
Remark | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "PersonalInformation": { "Title": "sample string 1", "FullName": "sample string 2", "FirstName": "sample string 3", "LastName": "sample string 4", "ContactNo": "sample string 5", "Email": "sample string 6", "Address": "sample string 7" }, "VisaType": 1, "TotalExperience": 2, "Attachment": { "AttachmentID": "f422d148-c1c4-4234-bb6f-aebe146967ef", "ImageString": "sample string 6", "AttachmentDataBase64": "sample string 7" }, "JobPostingID": "fc71bb4a-22bc-421c-bce6-c63c8ef7f3b1", "JobPostingTitle": "sample string 4", "JobRequestStatus": 0, "Remark": "sample string 5" }
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResultName | Description | Type | Additional information |
---|---|---|---|
IsValid | boolean |
None. |
|
Message | string |
None. |
|
Code | string |
None. |
|
ID | globally unique identifier |
None. |
|
Errors | Collection of string |
None. |
|
ErrorCodes | Collection of ErrorCode |
None. |
Response Formats
application/json, text/json
Sample:
{ "IsValid": true, "Message": "sample string 2", "Code": "sample string 3", "ID": "2b6aa3f6-1b7a-4c8e-b847-5ad92db99998", "Errors": [ "sample string 1", "sample string 2" ], "ErrorCodes": [ 1, 1 ] }
application/xml, text/xml
Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fleetlet.Entity"> <Code>sample string 3</Code> <ErrorCodes> <ErrorCode>Success</ErrorCode> <ErrorCode>Success</ErrorCode> </ErrorCodes> <Errors xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:string>sample string 1</d2p1:string> <d2p1:string>sample string 2</d2p1:string> </Errors> <ID>2b6aa3f6-1b7a-4c8e-b847-5ad92db99998</ID> <IsValid>true</IsValid> <Message>sample string 2</Message> </Result>