GET api/teammembers/{teammemberID}

Gets the people.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
teammemberID

The teammember identifier.

integer

Required

Body Parameters

None.

Response Information

Resource Description

PeopleDetailsViewModel
NameDescriptionTypeAdditional information
teammemberID

Gets or sets the teammember identifier.

integer

None.

teamTypeID

Gets or sets the team type identifier.

integer

None.

fullName

Gets or sets the full name.

string

None.

lastName

Gets or sets the last name.

string

None.

firstName

Gets or sets the first name.

string

None.

title

Gets or sets the title.

string

None.

narrative

Gets or sets the narrative.

string

None.

phone

Gets or sets the phone.

string

None.

email

Gets or sets the email.

string

None.

gslID

Gets or sets the GSL identifier.

integer

None.

gslName

Gets or sets the name of the GSL.

string

None.

picture

Gets or sets the picture.

string

None.

linkedin

Gets or sets the linkedin.

string

None.

twitter

Gets or sets the twitter.

string

None.

teammemberIndex

Gets or sets the index of the teammember.

integer

None.

visible

Gets or sets the visible.

boolean

None.

Locations

Gets or sets the locations.

Collection of RBLocationViewModel

None.

Response Formats

application/json, text/json

Sample:
{
  "teammemberID": 1,
  "teamTypeID": 1,
  "fullName": "sample string 2",
  "lastName": "sample string 3",
  "firstName": "sample string 4",
  "title": "sample string 5",
  "narrative": "sample string 6",
  "phone": "sample string 7",
  "email": "sample string 8",
  "gslID": 1,
  "gslName": "sample string 9",
  "picture": "sample string 10",
  "linkedin": "sample string 11",
  "twitter": "sample string 12",
  "teammemberIndex": 1,
  "visible": true,
  "Locations": [
    {
      "locationID": 1,
      "isRegional": "sample string 2",
      "regionalID": 1,
      "locationName": "sample string 3",
      "location_address_1": "sample string 4",
      "location_address_2": "sample string 5",
      "city": "sample string 6",
      "stateCode": "sample string 7",
      "state": "sample string 8",
      "zipCode": "sample string 9",
      "countryCode": "sample string 10",
      "country": "sample string 11",
      "lat": 1.1,
      "lng": 1.1,
      "distance": 12.1
    },
    {
      "locationID": 1,
      "isRegional": "sample string 2",
      "regionalID": 1,
      "locationName": "sample string 3",
      "location_address_1": "sample string 4",
      "location_address_2": "sample string 5",
      "city": "sample string 6",
      "stateCode": "sample string 7",
      "state": "sample string 8",
      "zipCode": "sample string 9",
      "countryCode": "sample string 10",
      "country": "sample string 11",
      "lat": 1.1,
      "lng": 1.1,
      "distance": 12.1
    }
  ]
}

text/html

Sample:
{"teammemberID":1,"teamTypeID":1,"fullName":"sample string 2","lastName":"sample string 3","firstName":"sample string 4","title":"sample string 5","narrative":"sample string 6","phone":"sample string 7","email":"sample string 8","gslID":1,"gslName":"sample string 9","picture":"sample string 10","linkedin":"sample string 11","twitter":"sample string 12","teammemberIndex":1,"visible":true,"Locations":[{"locationID":1,"isRegional":"sample string 2","regionalID":1,"locationName":"sample string 3","location_address_1":"sample string 4","location_address_2":"sample string 5","city":"sample string 6","stateCode":"sample string 7","state":"sample string 8","zipCode":"sample string 9","countryCode":"sample string 10","country":"sample string 11","lat":1.1,"lng":1.1,"distance":12.1},{"locationID":1,"isRegional":"sample string 2","regionalID":1,"locationName":"sample string 3","location_address_1":"sample string 4","location_address_2":"sample string 5","city":"sample string 6","stateCode":"sample string 7","state":"sample string 8","zipCode":"sample string 9","countryCode":"sample string 10","country":"sample string 11","lat":1.1,"lng":1.1,"distance":12.1}]}