POST eo-members/polpositions?ClientId={ClientId}&user_id={user_id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ClientId

string

Required

user_id

globally unique identifier

Required

Body Parameters

NameDescriptionTypeAdditional information
EoStaffInteractions

string

None.

VolunteerPositionsHeld

string

None.

LeadershipMotivations

string

None.

LeadershipAccomplishments

string

None.

Positions

Collection of string

None.

PositionNames

Collection of string

None.

FiscalYear

string

None.

Request Formats

application/json, text/json

Sample:
{
  "EoStaffInteractions": "sample string 1",
  "VolunteerPositionsHeld": "sample string 2",
  "LeadershipMotivations": "sample string 3",
  "LeadershipAccomplishments": "sample string 4",
  "Positions": [
    "sample string 1",
    "sample string 2"
  ],
  "PositionNames": [
    "sample string 1",
    "sample string 2"
  ],
  "FiscalYear": "sample string 5"
}

application/xml, text/xml

Sample:
<MemberRequests xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <EoStaffInteractions>sample string 1</EoStaffInteractions>
  <VolunteerPositionsHeld>sample string 2</VolunteerPositionsHeld>
  <LeadershipMotivations>sample string 3</LeadershipMotivations>
  <LeadershipAccomplishments>sample string 4</LeadershipAccomplishments>
  <Positions>
    <string>sample string 1</string>
    <string>sample string 2</string>
  </Positions>
  <PositionNames>
    <string>sample string 1</string>
    <string>sample string 2</string>
  </PositionNames>
  <FiscalYear>sample string 5</FiscalYear>
</MemberRequests>

Response Information

Resource Description

NameDescriptionTypeAdditional information
ByLawAgreement

string

None.

AgreementInitials

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ByLawAgreement": "sample string 1",
  "AgreementInitials": "sample string 2"
}

application/xml, text/xml

Sample:
<AgreementResult xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ByLawAgreement>sample string 1</ByLawAgreement>
  <AgreementInitials>sample string 2</AgreementInitials>
</AgreementResult>