Chinook

<back to all web services

QueryTracks

Media
The following routes are available for this service:
GET/tracks
GET/tracks/{TrackId}
QueryTracks Parameters:
NameParameterData TypeRequiredDescription
TrackIdpathlong?No
NameContainsquerystringNo
QueryBase Parameters:
NameParameterData TypeRequiredDescription
Skipformint?No
Takeformint?No
OrderByformstringNo
OrderByDescformstringNo
IncludeformstringNo
FieldsformstringNo
MetaformDictionary<string, string>No
Tracks Parameters:
NameParameterData TypeRequiredDescription
TrackIdformlongNo
NameformstringYes
AlbumIdformlong?No
MediaTypeIdformlongNo
GenreIdformlong?No
ComposerformstringNo
MillisecondsformlongNo
Bytesformlong?No
UnitPriceformdecimalNo
AlbumformAlbumsNo
MediaTypeformMediaTypesNo
GenreformGenresNo
Albums Parameters:
NameParameterData TypeRequiredDescription
AlbumIdformlongNo
TitleformstringYes
ArtistIdformlongNo
MediaTypes Parameters:
NameParameterData TypeRequiredDescription
MediaTypeIdformlongNo
NameformstringNo
Genres Parameters:
NameParameterData TypeRequiredDescription
GenreIdformlongNo
NameformstringNo
QueryResponse<T> Parameters:
NameParameterData TypeRequiredDescription
OffsetformintNo
TotalformintNo
ResultsformList<Albums>No
MetaformDictionary<string, string>No
ResponseStatusformResponseStatusNo

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

GET /tracks HTTP/1.1 
Host: chinook.netcore.io 
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	offset: 0,
	total: 0,
	results: 
	[
		{
			trackId: 0,
			name: String,
			albumId: 0,
			mediaTypeId: 0,
			genreId: 0,
			composer: String,
			milliseconds: 0,
			bytes: 0,
			unitPrice: 0,
			album: 
			{
				albumId: 0,
				title: String,
				artistId: 0
			},
			mediaType: 
			{
				mediaTypeId: 0,
				name: String
			},
			genre: 
			{
				genreId: 0,
				name: String
			}
		}
	],
	meta: 
	{
		String: String
	},
	responseStatus: 
	{
		errorCode: String,
		message: String,
		stackTrace: String,
		errors: 
		[
			{
				errorCode: String,
				fieldName: String,
				message: String,
				meta: 
				{
					String: String
				}
			}
		],
		meta: 
		{
			String: String
		}
	}
}