GET v1/glcategories

Gets all active GLCategories.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

GLCategoriesSearchResult
NameDescriptionTypeAdditional information
CategoryId

integer

None.

CategoryName

string

None.

CategoryFullName

string

None.

Active

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "categoryId": 1,
  "categoryName": "sample string 2",
  "categoryFullName": "sample string 3",
  "active": true
}

application/xml, text/xml

Sample:
<GLCategoriesSearchResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BAPI.Models.Accounting">
  <Active>true</Active>
  <CategoryFullName>sample string 3</CategoryFullName>
  <CategoryId>1</CategoryId>
  <CategoryName>sample string 2</CategoryName>
</GLCategoriesSearchResult>