Skip to content

vince-lynch/PhotoAlbum-Server

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Photo Album Service

Task

Create a Web API that when called

  1. Calls, combines and returns the result of:
  1. Allows an integrator to filter on the user id - so just returns the albums and photos relevant to a single user.

Solution

To start hosting the API, simply run the PhotoAlbumServer solution.

Tests are located in the Tests directory.

Endpoints

Domain:

PhotoAlbum:

{
	album: Album,
	photos: Photo[]
}

Album:

{
	id: int,
	userId: int,
	title: string
}

Photo:

{
	id: int,
	albumId: int,
	title: string,
	url: Uri,
	thumbnail: Uri
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%