Person.GetList

Summary

Returns basic information about a list filled out by the person with the given slug, including any custom introductory text.

Signatures

Web Service Method Signature
Person GetList(string apiKey, string site, string slug, string listSlug)
REST Signature
/rest/person/{slug}/lists/{listSlug}?apiKey={apiKey}&site={site}

Return Value

The summary information for the filled list.

Arguments

apiKey

Your API key. For more information see here.

site

The site the API should be executed against, e.g. www.ditto.net.

slug

The slug of the person to get.

listSlug

The slug of the list to get the summary for.

REST Example

http://api.ditto.net/rest/person/Mike/lists/BestMoviesEver?apiKey=xxxx&site=www.ditto.net

Response Example

<FilledList xmlns="http://www.ditto.net" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
	<Category>Movies</Category>
	<CreateDate>2008-07-23T11:59:26.383</CreateDate>
	<DittoUrl>http://www.ditto.net/Members/Mike/Lists/AllTimeMovies</DittoUrl>
	<Id>2</Id>
	<OwnerPersonId>10</OwnerPersonId>
	<Slug>AllTimeMovies</Slug>
	<Title>All-Time Favourite Movies</Title>
	<Description>This is a list of my all time favourite movies.</Description>
	<LastModifiedDate i:nil="true"/>
</FilledList>