GET v1/custom-lists

Gets list of all types of custom lists.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

SearchResultOfListItemType
NameDescriptionTypeAdditional information
TotalCount

integer

None.

Data

Collection of ListItemType

None.

Response Formats

application/json, text/json

Sample:
{
  "totalCount": 1,
  "data": [
    {
      "id": 1,
      "name": "sample string 2",
      "active": true
    },
    {
      "id": 1,
      "name": "sample string 2",
      "active": true
    }
  ]
}

application/xml, text/xml

Sample:
<SearchResultOfListItemType3KdDVibf xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BAPI.Models">
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/BAPI.Models.Core">
    <d2p1:ListItemType>
      <d2p1:active>true</d2p1:active>
      <d2p1:id>1</d2p1:id>
      <d2p1:name>sample string 2</d2p1:name>
    </d2p1:ListItemType>
    <d2p1:ListItemType>
      <d2p1:active>true</d2p1:active>
      <d2p1:id>1</d2p1:id>
      <d2p1:name>sample string 2</d2p1:name>
    </d2p1:ListItemType>
  </Data>
  <TotalCount>1</TotalCount>
</SearchResultOfListItemType3KdDVibf>