GET api/customer/flags

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of FlagEntry
NameDescriptionTypeAdditional information
Name

string

None.

Description

string

None.

Type

string

None.

TypeID

integer

None.

FlagID

integer

None.

ReadOnly

boolean

None.

Active

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Name": "sample string 1",
    "Description": "sample string 2",
    "Type": "sample string 3",
    "TypeID": 4,
    "FlagID": 5,
    "ReadOnly": true,
    "Active": true
  },
  {
    "Name": "sample string 1",
    "Description": "sample string 2",
    "Type": "sample string 3",
    "TypeID": 4,
    "FlagID": 5,
    "ReadOnly": true,
    "Active": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfFlagEntry xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Saga.Kjorebok.Backend.Identity.EntityFlagsSystem">
  <FlagEntry>
    <Active>true</Active>
    <Description>sample string 2</Description>
    <FlagID>5</FlagID>
    <Name>sample string 1</Name>
    <ReadOnly>true</ReadOnly>
    <Type>sample string 3</Type>
    <TypeID>4</TypeID>
  </FlagEntry>
  <FlagEntry>
    <Active>true</Active>
    <Description>sample string 2</Description>
    <FlagID>5</FlagID>
    <Name>sample string 1</Name>
    <ReadOnly>true</ReadOnly>
    <Type>sample string 3</Type>
    <TypeID>4</TypeID>
  </FlagEntry>
</ArrayOfFlagEntry>