GET api/{context}/customdata/All

Retrieve a list of all custom data fields.

PLEASE NOTE: This call has the potential to return many records, so discretion is advised.

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "Name": "sample string 1",
    "Description": "sample string 2",
    "DataType": "sample string 3",
    "AccessLevel": "sample string 4",
    "Active": true,
    "MaxLength": 1
  },
  {
    "Name": "sample string 1",
    "Description": "sample string 2",
    "DataType": "sample string 3",
    "AccessLevel": "sample string 4",
    "Active": true,
    "MaxLength": 1
  },
  {
    "Name": "sample string 1",
    "Description": "sample string 2",
    "DataType": "sample string 3",
    "AccessLevel": "sample string 4",
    "Active": true,
    "MaxLength": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfCustomDataModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BDS.Web.WebApi.Models">
  <CustomDataModel>
    <AccessLevel>sample string 4</AccessLevel>
    <Active>true</Active>
    <DataType>sample string 3</DataType>
    <Description>sample string 2</Description>
    <MaxLength>1</MaxLength>
    <Name>sample string 1</Name>
  </CustomDataModel>
  <CustomDataModel>
    <AccessLevel>sample string 4</AccessLevel>
    <Active>true</Active>
    <DataType>sample string 3</DataType>
    <Description>sample string 2</Description>
    <MaxLength>1</MaxLength>
    <Name>sample string 1</Name>
  </CustomDataModel>
  <CustomDataModel>
    <AccessLevel>sample string 4</AccessLevel>
    <Active>true</Active>
    <DataType>sample string 3</DataType>
    <Description>sample string 2</Description>
    <MaxLength>1</MaxLength>
    <Name>sample string 1</Name>
  </CustomDataModel>
</ArrayOfCustomDataModel>