GET v1/Photographers/{id}
Returns photographer details for the requested photographer id.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
Photographer Id |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
PhotographerReturnViewModelName | Description | Type | Additional 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" ] } }