GET v2/Photographers/{id}

Returns photographer details for the requested photographer id.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Photographer Id

integer

Required

Body Parameters

None.


Response Information

Resource Description

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"
    ]
  }
}