GET associations({associationId})/members({memberId})/categories

Method to get category information about a member

Request Information

Parameters

NameDescriptionAdditional information
associationId
Association of interest

Define this parameter in the request URI.

memberId
Member of interest

Define this parameter in the request URI.

Response Information

Category information about the member

Response body formats

application/json, text/json

Sample:
[
  {
    "IsPrimary": true,
    "Id": 1,
    "ParentId": 1,
    "GiftCardCategoryId": 1,
    "GiftCardSubCategoryId": 1,
    "Name": "sample string 2",
    "MemberCount": 3,
    "QuickLinkId": 1,
    "HasChildren": true
  },
  {
    "IsPrimary": true,
    "Id": 1,
    "ParentId": 1,
    "GiftCardCategoryId": 1,
    "GiftCardSubCategoryId": 1,
    "Name": "sample string 2",
    "MemberCount": 3,
    "QuickLinkId": 1,
    "HasChildren": true
  },
  {
    "IsPrimary": true,
    "Id": 1,
    "ParentId": 1,
    "GiftCardCategoryId": 1,
    "GiftCardSubCategoryId": 1,
    "Name": "sample string 2",
    "MemberCount": 3,
    "QuickLinkId": 1,
    "HasChildren": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfMemberCategoryResource xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MicroNet.WebAPI.Classes.Resources">
  <MemberCategoryResource>
    <GiftCardCategoryId>1</GiftCardCategoryId>
    <GiftCardSubCategoryId>1</GiftCardSubCategoryId>
    <HasChildren>true</HasChildren>
    <Id>1</Id>
    <MemberCount>3</MemberCount>
    <Name>sample string 2</Name>
    <ParentId>1</ParentId>
    <QuickLinkId>1</QuickLinkId>
    <IsPrimary>true</IsPrimary>
  </MemberCategoryResource>
  <MemberCategoryResource>
    <GiftCardCategoryId>1</GiftCardCategoryId>
    <GiftCardSubCategoryId>1</GiftCardSubCategoryId>
    <HasChildren>true</HasChildren>
    <Id>1</Id>
    <MemberCount>3</MemberCount>
    <Name>sample string 2</Name>
    <ParentId>1</ParentId>
    <QuickLinkId>1</QuickLinkId>
    <IsPrimary>true</IsPrimary>
  </MemberCategoryResource>
  <MemberCategoryResource>
    <GiftCardCategoryId>1</GiftCardCategoryId>
    <GiftCardSubCategoryId>1</GiftCardSubCategoryId>
    <HasChildren>true</HasChildren>
    <Id>1</Id>
    <MemberCount>3</MemberCount>
    <Name>sample string 2</Name>
    <ParentId>1</ParentId>
    <QuickLinkId>1</QuickLinkId>
    <IsPrimary>true</IsPrimary>
  </MemberCategoryResource>
</ArrayOfMemberCategoryResource>

text/csv

Sample:
IsPrimary,Id,ParentId,GiftCardCategoryId,GiftCardSubCategoryId,Name,MemberCount,QuickLinkId,HasChildren
"True","1","1","1","1","sample string 2","3","1","True"
"True","1","1","1","1","sample string 2","3","1","True"
"True","1","1","1","1","sample string 2","3","1","True"