GET api/v1/search/{searchId}/artists
Page through an existing search - expires after 24 hours
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| searchId | string |
Required |
Body Parameters
NextArtistSearchModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Authentication | AuthenticationModel |
Required |
|
| Request | NextArtistSearchRequestModel |
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",
"Offset": "0-n - page offset, 0 indicates first page, 1 indicates second page, etc.",
"SortBy": "UserName/TotalUsage/WorkstationUsage/RenderUsage/LastUsed/Location",
"Ascending": "true/false"
}
}
application/xml, text/xml
Sample:
<NextArtistSearchModel 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>
<Ascending>true/false</Ascending>
<Email>larry@newmedia.com</Email>
<Offset>0-n - page offset, 0 indicates first page, 1 indicates second page, etc.</Offset>
<SortBy>UserName/TotalUsage/WorkstationUsage/RenderUsage/LastUsed/Location</SortBy>
</Request>
</NextArtistSearchModel>
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>