Business Concept Filters
Search available filters for business concepts based on request criteria.
Body
confidentialboolean · nullableOptional
Filter by confidential flag
domain_idsinteger[] · nullableOptional
Filter by domain IDs
textstring · nullableOptional
Full-text search term
typestring[] · nullableOptional
Filter by business concept types
Other propertiesanyOptional
Responses
200
Business concept filters
application/json
401
Unauthorized
application/json
500
Internal Server Error
application/json
post/api/business_concept_filters/search
POST /api/business_concept_filters/search HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 110
{
"confidential": false,
"domain_ids": [
1,
2
],
"status": [
"published"
],
"text": "customer",
"type": [
"business_concept"
]
}{
"data": {
"domains": {
"buckets": [
{
"doc_count": 42,
"key": "1"
}
],
"values": [
1
]
},
"status": {
"buckets": [
{
"key": "published"
},
{
"key": "draft"
}
],
"values": [
"published",
"draft"
]
}
}
}Retrieve available business concept filters for the authenticated user.
Responses
200
Business concept filters
application/json
401
Unauthorized
application/json
500
Internal Server Error
application/json
get/api/business_concept_filters
GET /api/business_concept_filters HTTP/1.1
Accept: */*
{
"data": {
"domains": {
"buckets": [
{
"doc_count": 42,
"key": "1"
}
],
"values": [
1
]
},
"status": {
"buckets": [
{
"key": "published"
},
{
"key": "draft"
}
],
"values": [
"published",
"draft"
]
}
}
}Last updated