MembershipOrganizations Test
Finance/MembershipOrganizations/{id}
Get a specific membership organization.

NOTE: As part of the upcoming changes to membership functionality, this resource will be removed in an upcoming major Tessitura release. Please make a note that code that references it will need to be revisited as part of that upgrade process.
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/Finance/MembershipOrganizations/{id}

URI Parameters

Parameter Name Data Type Required Notes
id integer Y

Request Body

None.

No request body.

Response object type : MembershipOrganization

Response object type MembershipOrganization has the following properties.
Property Name Data Type Length Required Readonly Notes
ControlGroup ControlGroupSummary N
FK: TR_CONTROL_GROUP.id   Resource: ControlGroups
Description string N
EditIndicator boolean
Id integer N
{
  "Description": "sample string 1",
  "Id": 1,
  "EditIndicator": true,
  "ControlGroup": {
    "Description": "sample string 1",
    "Id": 2,
    "Inactive": true
  }
}
<MembershipOrganization xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <ControlGroup>
    <Description>sample string 1</Description>
    <Id>2</Id>
    <Inactive>true</Inactive>
  </ControlGroup>
  <Description>sample string 1</Description>
  <EditIndicator>true</EditIndicator>
  <Id>1</Id>
</MembershipOrganization>
Change Version Description Contract Old New
Parameter Changed 15.0.0 id has been marked as required. Required