POST api/JobPosting?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": "97b1714f-668b-499d-818a-b62d911d2ab8", "ImageString": "sample string 6", "AttachmentDataBase64": "sample string 7" }, "JobPostingID": "da7faf79-969c-4ea6-b20d-f91ecce93566", "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": "6b2e02f5-2009-46c4-9e25-a5a674a54f93", "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>6b2e02f5-2009-46c4-9e25-a5a674a54f93</ID> <IsValid>true</IsValid> <Message>sample string 2</Message> </Result>