GET api/v1/search/softwarelist
Get list of software that can be searched
Request Information
URI Parameters
None.
Body Parameters
SearchSoftwareListModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Authentication | AuthenticationModel |
Required |
|
| Request | SearchSoftwareListRequestModel |
Required |
Request Formats
application/json, text/json
Sample:
{
"Authentication": {
"Id": "170200123 - sample only, user your ID",
"Key": "467512342123 - sample only, user your Key"
},
"Request": {
"Email": "larry@newmedia.com",
"WorkstationOnly": "true/false",
"RenderOnly": "true/false"
}
}
application/xml, text/xml
Sample:
<SearchSoftwareListModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api.Models">
<Authentication>
<Id>170200123 - sample only, user your ID</Id>
<Key>467512342123 - sample only, user your Key</Key>
</Authentication>
<Request>
<Email>larry@newmedia.com</Email>
<RenderOnly>true/false</RenderOnly>
<WorkstationOnly>true/false</WorkstationOnly>
</Request>
</SearchSoftwareListModel>
Response Information
Resource Description
SearchOutgoingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Message | MessageModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"Message": {
"Code": "sample string 1",
"Description": "sample string 2"
}
}
application/xml, text/xml
Sample:
<SearchOutgoingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api.Models">
<Message>
<Code>sample string 1</Code>
<Description>sample string 2</Description>
</Message>
</SearchOutgoingModel>