POST api/CV/SectionHeaders
Add/Update/Delete CV Section Headers
Request Information
URI Parameters
None.
Body Parameters
String Array of Header Names And Information(Mandatory)
Collection of CVSectionHeaderInfoName | Description | Type | Additional information |
---|---|---|---|
CvSectionHeaderDesc | string |
None. |
|
IsActive | boolean |
None. |
|
CvSectionHeaderId | integer |
None. |
|
Deleted | integer |
None. |
Request Formats
application/json, text/json
Sample:
[ { "CvSectionHeaderDesc": "sample string 1", "IsActive": true, "CvSectionHeaderId": 1, "Deleted": 1 }, { "CvSectionHeaderDesc": "sample string 1", "IsActive": true, "CvSectionHeaderId": 1, "Deleted": 1 } ]
application/xml, text/xml
Sample:
<ArrayOfCVSectionHeaderInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClassLibraryITTF1"> <CVSectionHeaderInfo> <CvSectionHeaderDesc>sample string 1</CvSectionHeaderDesc> <CvSectionHeaderId>1</CvSectionHeaderId> <Deleted>1</Deleted> <IsActive>true</IsActive> </CVSectionHeaderInfo> <CVSectionHeaderInfo> <CvSectionHeaderDesc>sample string 1</CvSectionHeaderDesc> <CvSectionHeaderId>1</CvSectionHeaderId> <Deleted>1</Deleted> <IsActive>true</IsActive> </CVSectionHeaderInfo> </ArrayOfCVSectionHeaderInfo>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
integerResponse Formats
application/json, text/json
Sample:
1
application/xml, text/xml
Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>