POST api/JobSeeker/Profile/DeleteDocument

Request Information

URI Parameters

None.

Body Parameters

DocumentsInput
NameDescriptionTypeAdditional information
ID

integer

None.

Name

string

None.

ExternalUrl

string

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "name": "sample string 2",
  "externalUrl": "sample string 3"
}

application/xml, text/xml

Sample:
<DocumentsInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIService.Models.JobSeeker">
  <ExternalUrl>sample string 3</ExternalUrl>
  <ID>1</ID>
  <Name>sample string 2</Name>
</DocumentsInput>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ProfileOutput
NameDescriptionTypeAdditional information
FailMessage

string

None.

Success

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "failMessage": "sample string 1",
  "success": true
}

application/xml, text/xml

Sample:
<ProfileOutput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIService.Models.JobSeeker">
  <FailMessage>sample string 1</FailMessage>
  <Success>true</Success>
</ProfileOutput>