DELETE api/ResumeSections/{id}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ResumeSectionName | Description | Type | Additional information |
---|---|---|---|
ResumeSectionID | integer |
None. |
|
SectionName | string |
None. |
|
Description | string |
None. |
|
SectionOrder | integer |
None. |
|
Active | boolean |
None. |
|
CreatedDate | date |
None. |
Response Formats
application/json, text/json
Sample:
{ "ResumeSectionID": 1, "SectionName": "sample string 2", "Description": "sample string 3", "SectionOrder": 4, "Active": true, "CreatedDate": "2019-02-17T18:47:54.0323408-08:00" }
application/xml, text/xml
Sample:
<ResumeSection xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Web_API.Entities"> <Active>true</Active> <CreatedDate>2019-02-17T18:47:54.0323408-08:00</CreatedDate> <Description>sample string 3</Description> <ResumeSectionID>1</ResumeSectionID> <SectionName>sample string 2</SectionName> <SectionOrder>4</SectionOrder> </ResumeSection>