Contents



Thsi function provides access to expert reviews. Given an expert it returns basic information about the expert and all the reviews this expert has received.

The endpoint for this function is:

//apis.kassrv.com/categories.svc/APIVERSION/EXPERTID/FORMAT?{param=value¶m=value}



Where:

APIVERSION is the API version being used
EXPERTID is the expert ID being requested
FORMAT is the response format requested


Request Parameters



Response Structure



Example Request

//apis.kassrv.com/reviews.svc/1.1/jsonp?count=10&callback=api_getExpertReviews



Example Response: XML


< expertReviews >
< id >385816
< /id >
< name >Help at a click
< /name >
< reviewsCount >940
< /reviewsCount >
< averageRating >4.76
< /averageRating >
< profile >
//apis.kassrv.com/experts.svc/1.1/385816/category/70/json?banner=0
< /profile >
< reviews >
< review >
< clientName >kennelmaster
< /clientName >
< date >2009-05-07T16:45:05.95
< /date >
< rating >5
< /rating >
< comment >Great 0to work with
< /comment >
< /review >
< review >
< clientName >dawort
< /clientName >
< date >2009-05-06T20:57:53.98
< /date >
< rating >5
< /rating >
< comment > excellent work and easy to work with. Highly recommend.
< /comment >
< /review >
< /reviews >
< /expertReviews >


Example Response: JSON

{    
"id":385816,      
"name":"Help at a click",      
"reviewsCount":940,     
"averageRating":4.76,   
"profile":"//apis.kassrv.com/experts.svc/1.1/385816/category/70/json?banner=0",      

"reviews":      
 [	{                
		"clientName":"kennelmaster",   
		"date":"/Date(1241729105950-0400)/",              
		"rating":5,                
		"comment":"Great to work with" 
	},           
	{
		"clientName":"dawort",                
		"date":"/Date(1241657873980-0400)/",                
		"rating":5,                
		"comment":"excellent work and easy to work with.  Highly recommend."
	}      
 ] 
}