GET eo-members/eo-chapter?ClientId={ClientId}&user_id={user_id}

Retrieve chapter information for particular User Id

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ClientId

ClientId

string

Required

user_id

User Id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

NameDescriptionTypeAdditional information
ChapterId

globally unique identifier

None.

ChapterName

string

None.

ChapterStatusId

string

None.

ChapterStatus

string

None.

RegionName

string

None.

Region_Id

string

None.

AreaName

string

None.

Area_Id

globally unique identifier

None.

Chapter_Members

integer

None.

Latitude

string

None.

Longitude

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ChapterId": "9c96b47b-19e3-41e2-8e9d-aa05c51e72fc",
  "ChapterName": "sample string 2",
  "ChapterStatusId": "sample string 3",
  "ChapterStatus": "sample string 4",
  "RegionName": "sample string 5",
  "Region_Id": "sample string 6",
  "AreaName": "sample string 7",
  "Area_Id": "9525e3bd-8ed5-4c04-8dd4-08f6bc0521f7",
  "Chapter_Members": 9,
  "Latitude": "sample string 10",
  "Longitude": "sample string 11"
}

application/xml, text/xml

Sample:
<EOChapter xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ChapterId>9c96b47b-19e3-41e2-8e9d-aa05c51e72fc</ChapterId>
  <ChapterName>sample string 2</ChapterName>
  <ChapterStatusId>sample string 3</ChapterStatusId>
  <ChapterStatus>sample string 4</ChapterStatus>
  <RegionName>sample string 5</RegionName>
  <Region_Id>sample string 6</Region_Id>
  <AreaName>sample string 7</AreaName>
  <Area_Id>9525e3bd-8ed5-4c04-8dd4-08f6bc0521f7</Area_Id>
  <Chapter_Members>9</Chapter_Members>
  <Latitude>sample string 10</Latitude>
  <Longitude>sample string 11</Longitude>
</EOChapter>