GET api/marketingtypes/{marketingSubjectType}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
marketingSubjectType

MarketingSubjectType

Required

Body Parameters

None.

Response Information

Resource Description

Collection of MarketingType
NameDescriptionTypeAdditional information
Id

integer

None.

Code

string

None.

MarketingSubjectType

string

None.

Description

string

None.

Selected

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "code": "sample string 1",
    "marketingSubjectType": "sample string 2",
    "description": "sample string 3",
    "selected": true
  },
  {
    "id": 1,
    "code": "sample string 1",
    "marketingSubjectType": "sample string 2",
    "description": "sample string 3",
    "selected": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfMarketingType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Skarabee.Fuse.OM">
  <MarketingType>
    <Code>sample string 1</Code>
    <Description>sample string 3</Description>
    <Id>1</Id>
    <MarketingSubjectType>sample string 2</MarketingSubjectType>
    <Selected>true</Selected>
  </MarketingType>
  <MarketingType>
    <Code>sample string 1</Code>
    <Description>sample string 3</Description>
    <Id>1</Id>
    <MarketingSubjectType>sample string 2</MarketingSubjectType>
    <Selected>true</Selected>
  </MarketingType>
</ArrayOfMarketingType>