GET api/JobSeeker/Profile/GetDocuments
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
DocumentsOutput| Name | Description | Type | Additional information |
|---|---|---|---|
| Documents | Collection of DocumentInfo |
None. |
Response Formats
application/json, text/json
Sample:
{
"documents": [
{
"id": 1,
"name": "sample string 2",
"externalUrl": "sample string 3"
},
{
"id": 1,
"name": "sample string 2",
"externalUrl": "sample string 3"
}
]
}
application/xml, text/xml
Sample:
<DocumentsOutput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIService.Models.JobSeeker">
<Documents>
<DocumentInfo>
<ExternalUrl>sample string 3</ExternalUrl>
<ID>1</ID>
<Name>sample string 2</Name>
</DocumentInfo>
<DocumentInfo>
<ExternalUrl>sample string 3</ExternalUrl>
<ID>1</ID>
<Name>sample string 2</Name>
</DocumentInfo>
</Documents>
</DocumentsOutput>