GET v2/Photographers

Returns a full list of photgrapher details.

Request Information

URI Parameters

None.

Body Parameters

None.


Response Information

Resource Description

Collection of PhotographerReturnViewModel
NameDescriptionTypeAdditional information
PhotographerId

integer

None.

PhotographerName

string

None.

PhotographerPhotoUrl

string

None.

PhotographerDescription

string

None.

Gallery

PhotographerReturnViewModelGallery

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "photographerId": 1,
    "photographerName": "sample string 2",
    "photographerPhotoUrl": "sample string 3",
    "photographerDescription": "sample string 4",
    "gallery": {
      "total": 1,
      "urlList": [
        "sample string 1",
        "sample string 2"
      ]
    }
  },
  {
    "photographerId": 1,
    "photographerName": "sample string 2",
    "photographerPhotoUrl": "sample string 3",
    "photographerDescription": "sample string 4",
    "gallery": {
      "total": 1,
      "urlList": [
        "sample string 1",
        "sample string 2"
      ]
    }
  }
]