CLONESAHIBINDEN
FRONTEND GUIDE FOR AI CODING AGENTS - PART 7 - CategoryLocation Service
This document is a part of a REST API guide for the clonesahibinden project. It is designed for AI agents that will generate frontend code to consume the project’s backend.
This document provides extensive instruction for the usage of categoryLocation
Service Access
CategoryLocation service management is handled through service specific base urls.
CategoryLocation service may be deployed to the preview server, staging server, or production server. Therefore,it has 3 access URLs. The frontend application must support all deployment environments during development, and the user should be able to select the target API server on the login page (already handled in first part.).
For the categoryLocation service, the base URLs are:
-
Preview:
https://clonesahibinden.prw.mindbricks.com/categorylocation-api -
Staging:
https://clonesahibinden-stage.mindbricks.co/categorylocation-api -
Production:
https://clonesahibinden.mindbricks.co/categorylocation-api
Scope
CategoryLocation Service Description
Manages the category and location hierarchies for listings. Provides CRUD with uniqueness enforcement, navigation endpoints for category/location trees, and supports efficient public browsing with heavy read optimization.
CategoryLocation service provides apis and business logic for following data objects in clonesahibinden application. Each data object may be either a central domain of the application data structure or a related helper data object for a central concept. Note that data object concept is equal to table concept in the database, in the service database each data object is represented as a db table scheme and the object instances as table rows.
category Data Object: Represents a
listing category; supports up to three levels of nesting for
hierarchical browsing and filtering. Self-referencing parent-child
relationship. Slug is unique for public URL routing. Sort order is
unique within parent for ordered display.
location Data Object: Represents a
hierarchical location of country/city/district for listings. Used for
filtering/search/location field on all listings.
CategoryLocation Service Frontend Description By The Backend Architect
AI Prompt: The backend provides hierarchical listing/category/location endpoints for navigation, filtering, and selection. When rendering category or location selectors, provide the nested structure plus a count of descendant listings/categories for fast navigation. Editing/deletion endpoints are admin-only. When referencing categories/locations elsewhere (e.g., listing editor), use these APIs for search/dropdown population. All slugs are unique for SEO-friendly URLs.
API Structure
Object Structure of a Successful Response
When the service processes requests successfully, it wraps the requested resource(s) within a JSON envelope. This envelope includes the data and essential metadata such as configuration details and pagination information, providing context to the client.
HTTP Status Codes:
- 200 OK: Returned for successful GET, LIST, UPDATE, or DELETE operations, indicating that the request was processed successfully.
- 201 Created: Returned for CREATE operations, indicating that the resource was created successfully.
Success Response Format:
For successful operations, the response includes a
"status": "OK" property, signaling
that the request executed successfully. The structure of a successful
response is outlined below:
{
"status":"OK",
"statusCode": 200,
"elapsedMs":126,
"ssoTime":120,
"source": "db",
"cacheKey": "hexCode",
"userId": "ID",
"sessionId": "ID",
"requestId": "ID",
"dataName":"products",
"method":"GET",
"action":"list",
"appVersion":"Version",
"rowCount":3,
"products":[{},{},{}],
"paging": {
"pageNumber":1,
"pageRowCount":25,
"totalRowCount":3,
"pageCount":1
},
"filters": [],
"uiPermissions": []
}
-
products: In this example, this key contains the actual response content, which may be a single object or an array of objects depending on the operation.
Additional Data
Each API may include additional data besides the main data object, depending on the business logic of the API. These will be provided in each API’s response signature.
Error Response
If a request encounters an issue—whether due to a logical fault or a technical problem—the service responds with a standardized JSON error structure. The HTTP status code indicates the nature of the error, using commonly recognized codes for clarity:
- 400 Bad Request: The request was improperly formatted or contained invalid parameters.
- 401 Unauthorized: The request lacked a valid authentication token; login is required.
- 403 Forbidden: The current token does not grant access to the requested resource.
- 404 Not Found: The requested resource was not found on the server.
- 500 Internal Server Error: The server encountered an unexpected condition.
Each error response is structured to provide meaningful insight into the problem, assisting in efficient diagnosis and resolution.
{
"result": "ERR",
"status": 400,
"message": "errMsg_organizationIdisNotAValidID",
"errCode": 400,
"date": "2024-03-19T12:13:54.124Z",
"detail": "String"
}
Bucket Management
(This information is also given in PART 1 prompt.)
This application has a bucket service used to store user files and other object-related files. The bucket service is login-agnostic, so for write operations or private reads, include a bucket token (provided by services) in the request’s Authorization header as a Bearer token.
Please note that all other business services require the access token in the Bearer header, while the bucket service expects a bucket token because it is login-agnostic. Ensure you manage the required token injection properly; any auth interceptor should not replace the bucket token with the access token.
User Bucket This bucket stores public user files for each user.
When a user logs in—or in the /currentuser response—there
is a userBucketToken to use when sending user-related
public files to the bucket service.
{
//...
"userBucketToken": "e56d...."
}
To upload a file
POST {baseUrl}/bucket/upload
The request body is form-data which includes the
bucketId and the file binary in the
files field.
{
bucketId: "{userId}-public-user-bucket",
files: {binary}
}
Response status is 200 on success, e.g., body:
{
"success": true,
"data": [
{
"fileId": "9da03f6d-0409-41ad-bb06-225a244ae408",
"originalName": "test (10).png",
"mimeType": "image/png",
"size": 604063,
"status": "uploaded",
"bucketName": "f7103b85-fcda-4dec-92c6-c336f71fd3a2-public-user-bucket",
"isPublic": true,
"downloadUrl": "https://babilcom.mindbricks.co/bucket/download/9da03f6d-0409-41ad-bb06-225a244ae408"
}
]
}
To download a file from the bucket, you need its fileId.
If you upload an avatar or other asset, ensure the download URL or the
fileId is stored in the backend.
Buckets are mostly used in object creations that require an additional file, such as a product image or user avatar. After uploading your image to the bucket, insert the returned download URL into the related property of the target object record.
Application Bucket
This Clonesahibinden application also includes a common public bucket
that anyone can read, but only users with the superAdmin,
admin, or saasAdmin roles can write (upload)
to it.
When a user with one of these admin roles is logged in, the
/login response or the /currentuser response
also returns an applicationBucketToken field, which is
used when uploading any file to the application bucket.
{
//...
"applicationBucketToken": "e23fd...."
}
The common public application bucket ID is
"clonesahibinden-public-common-bucket"
In certain admin areas—such as product management pages—since the user already has the application bucket token, they will be able to upload related object images.
Please configure your UI to upload files to the application bucket using this bucket token whenever needed.
Object Buckets Some objects may also return a bucket token for uploading or accessing files related to that object. For example, in a project management application, when you fetch a project’s data, a public or private bucket token may be provided to upload or download project-related files.
These buckets will be used as described in the relevant object definitions.
Category Data Object
Represents a listing category; supports up to three levels of nesting for hierarchical browsing and filtering. Self-referencing parent-child relationship. Slug is unique for public URL routing. Sort order is unique within parent for ordered display.
Category Data Object Frontend Description By The Backend Architect
AI Prompt: When rendering category selectors (dropdowns, trees) or category navigation lists, fetch via listCategories. Use sortOrder for display ordering. Show child count for expandable parents. Use slug field for SEO-friendly category URLs. Admins can create, edit, disable (isActive=false), or delete categories; most users view only. Parent selection enforced on create/update. Cannot create loops.
Category Data Object Properties
Category data object has got following properties that are represented as table fields in the database scheme. These properties don’t stand just for data storage, but each may have different settings to manage the business logic.
| Property | Type | IsArray | Required | Secret | Description |
|---|---|---|---|---|---|
description |
Text | false | No | No | Optional extended description for category (for admin display or frontend info). |
icon |
String | false | No | No | Icon identifier (string or URL to a static asset) for this category. |
name |
String | false | Yes | No | Category name, e.g. ‘Automobiles’, ‘Electronics’. |
parentCategoryId |
ID | false | No | No | References parent category for hierarchy. Top-level (root) categories have null. |
slug |
String | false | Yes | No | SEO-friendly unique slug for URL and search. Lowercase, hyphens only. |
sortOrder |
Integer | false | Yes | No | Order for listing within siblings. Unique per parent. |
- Required properties are mandatory for creating objects and must be provided in the request body if no default value, formula or session bind is set.
Relation Properties
parentCategoryId
Mindbricks supports relations between data objects, allowing you to define how objects are linked together. The relations may reference to a data object either in this service or in another service. Id the reference is remote, backend handles the relations through service communication or elastic search. These relations should be respected in the frontend so that instaead of showing the related objects id, the frontend should list human readable values from other data objects. If the relation points to another service, frontend should use the referenced service api in case it needs related data. The relation logic is montly handled in backend so the api responses feeds the frontend about the relational data. In mmost cases the api response will provide the relational data as well as the main one.
In frontend, please ensure that,
1- instaead of these relational ids you show the main human readable field of the related target data (like name), 2- if this data object needs a user input of these relational ids, you should provide a combobox with the list of possible records or (a searchbox) to select with the realted target data object main human readable field.
-
parentCategoryId: ID Relation to
category.id
The target object is a parent object, meaning that the relation is a one-to-many relationship from target to this object.
Required: No
Filter Properties
name parentCategoryId slug
Filter properties are used to define parameters that can be used in query filters, allowing for dynamic data retrieval based on user input or predefined criteria. These properties are automatically mapped as API parameters in the listing API’s.
-
name: String has a filter named
name -
parentCategoryId: ID has a filter named
parentCategoryId -
slug: String has a filter named
slug
Location Data Object
Represents a hierarchical location of country/city/district for listings. Used for filtering/search/location field on all listings.
Location Data Object Frontend Description By The Backend Architect
AI Prompt: Use listLocations to fetch hierarchical selectable location objects for search and listing creation forms. Filter in the frontend by country/city/district. Display latitude/longitude on map if needed. Admins can add, edit, delete or disable (isActive=false) locations. Public users may only browse.
Location Data Object Properties
Location data object has got following properties that are represented as table fields in the database scheme. These properties don’t stand just for data storage, but each may have different settings to manage the business logic.
| Property | Type | IsArray | Required | Secret | Description |
|---|---|---|---|---|---|
city |
String | false | Yes | No | City name. |
country |
String | false | Yes | No | Country name (typically ‘Turkey’). |
district |
String | false | Yes | No | District name, for fine-grained search. |
latitude |
Double | false | No | No | Latitude for map/search. |
longitude |
Double | false | No | No | Longitude for map/search. |
postalCode |
String | false | No | No | Postal code for location. |
- Required properties are mandatory for creating objects and must be provided in the request body if no default value, formula or session bind is set.
Filter Properties
city country district
Filter properties are used to define parameters that can be used in query filters, allowing for dynamic data retrieval based on user input or predefined criteria. These properties are automatically mapped as API parameters in the listing API’s.
-
city: String has a filter named
city -
country: String has a filter named
country -
district: String has a filter named
district
Default CRUD APIs
For each data object, the backend architect may designate
default APIs for standard operations (create, update,
delete, get, list). These are the APIs that frontend CRUD forms and AI
agents should use for basic record management. If no default is
explicitly set (isDefaultApi), the frontend generator
auto-discovers the most general API for each operation.
Category Default APIs
| Operation | API Name | Route | Explicitly Set |
|---|---|---|---|
| Create | createCategory |
/v1/categories |
Auto |
| Update | updateCategory |
/v1/categories/:categoryId |
Auto |
| Delete | deleteCategory |
/v1/categories/:categoryId |
Auto |
| Get | getCategory |
/v1/categories/:categoryId |
Auto |
| List | listCategories |
/v1/categories |
System |
Location Default APIs
| Operation | API Name | Route | Explicitly Set |
|---|---|---|---|
| Create | createLocation |
/v1/locations |
Auto |
| Update | updateLocation |
/v1/locations/:locationId |
Auto |
| Delete | deleteLocation |
/v1/locations/:locationId |
Auto |
| Get | getLocation |
/v1/locations/:locationId |
Auto |
| List | listLocations |
/v1/locations |
System |
When building CRUD forms for a data object, use the default create/update APIs listed above. The form fields should correspond to the API’s body parameters. For relation fields, render a dropdown loaded from the related object’s list API using the display label property.
API Reference
Create Category API
Creates a new category. Slug must be globally unique. Only admin may create categories.
API Frontend Description By The Backend Architect
Only admins can create categories. The slug field must be unique and URL-friendly. Parent selection (for nesting) is validated. Use for admin consoles and bulk management.
Rest Route
The createCategory API REST controller can be triggered
via the following route:
/v1/categories
Rest Request Parameters
The createCategory api has got 6 regular request
parameters
| Parameter | Type | Required | Population |
|---|---|---|---|
| description | Text | false | request.body?.[“description”] |
| icon | String | false | request.body?.[“icon”] |
| name | String | true | request.body?.[“name”] |
| parentCategoryId | ID | false | request.body?.[“parentCategoryId”] |
| slug | String | true | request.body?.[“slug”] |
| sortOrder | Integer | true | request.body?.[“sortOrder”] |
| description : Optional extended description for category (for admin display or frontend info). | |||
| icon : Icon identifier (string or URL to a static asset) for this category. | |||
| name : Category name, e.g. ‘Automobiles’, ‘Electronics’. | |||
| parentCategoryId : References parent category for hierarchy. Top-level (root) categories have null. | |||
| slug : SEO-friendly unique slug for URL and search. Lowercase, hyphens only. | |||
| sortOrder : Order for listing within siblings. Unique per parent. |
REST Request To access the api you can use the REST controller with the path POST /v1/categories
axios({
method: 'POST',
url: '/v1/categories',
data: {
description:"Text",
icon:"String",
name:"String",
parentCategoryId:"ID",
slug:"String",
sortOrder:"Integer",
},
params: {
}
});
REST Response
{
"status": "OK",
"statusCode": "201",
"elapsedMs": 126,
"ssoTime": 120,
"source": "db",
"cacheKey": "hexCode",
"userId": "ID",
"sessionId": "ID",
"requestId": "ID",
"dataName": "category",
"method": "POST",
"action": "create",
"appVersion": "Version",
"rowCount": 1,
"category": {
"id": "ID",
"description": "Text",
"icon": "String",
"name": "String",
"parentCategoryId": "ID",
"slug": "String",
"sortOrder": "Integer",
"isActive": true,
"recordVersion": "Integer",
"createdAt": "Date",
"updatedAt": "Date",
"_owner": "ID"
}
}
Create Location API
Create a new location entry (country, city, district). Only admin allowed. Composite uniqueness enforced.
API Frontend Description By The Backend Architect
For admin use only. Location uniqueness validated on (country, city, district). For multi-level selectors, call this repeatedly to populate country/city/district lists.
Rest Route
The createLocation API REST controller can be triggered
via the following route:
/v1/locations
Rest Request Parameters
The createLocation api has got 6 regular request
parameters
| Parameter | Type | Required | Population |
|---|---|---|---|
| city | String | true | request.body?.[“city”] |
| country | String | true | request.body?.[“country”] |
| district | String | true | request.body?.[“district”] |
| latitude | Double | false | request.body?.[“latitude”] |
| longitude | Double | false | request.body?.[“longitude”] |
| postalCode | String | false | request.body?.[“postalCode”] |
| city : City name. | |||
| country : Country name (typically ‘Turkey’). | |||
| district : District name, for fine-grained search. | |||
| latitude : Latitude for map/search. | |||
| longitude : Longitude for map/search. | |||
| postalCode : Postal code for location. |
REST Request To access the api you can use the REST controller with the path POST /v1/locations
axios({
method: 'POST',
url: '/v1/locations',
data: {
city:"String",
country:"String",
district:"String",
latitude:"Double",
longitude:"Double",
postalCode:"String",
},
params: {
}
});
REST Response
{
"status": "OK",
"statusCode": "201",
"elapsedMs": 126,
"ssoTime": 120,
"source": "db",
"cacheKey": "hexCode",
"userId": "ID",
"sessionId": "ID",
"requestId": "ID",
"dataName": "location",
"method": "POST",
"action": "create",
"appVersion": "Version",
"rowCount": 1,
"location": {
"id": "ID",
"city": "String",
"country": "String",
"district": "String",
"latitude": "Double",
"longitude": "Double",
"postalCode": "String",
"isActive": true,
"recordVersion": "Integer",
"createdAt": "Date",
"updatedAt": "Date",
"_owner": "ID"
}
}
Delete Category API
Deletes a category by id (soft delete). Only admin allowed.
API Frontend Description By The Backend Architect
Admin-only. Deleting a parent category sets parentCategoryId to null on children. Category is soft-deleted for restoration if needed.
Rest Route
The deleteCategory API REST controller can be triggered
via the following route:
/v1/categories/:categoryId
Rest Request Parameters
The deleteCategory api has got 1 regular request
parameter
| Parameter | Type | Required | Population |
|---|---|---|---|
| categoryId | ID | true | request.params?.[“categoryId”] |
| categoryId : This id paremeter is used to select the required data object that will be deleted |
REST Request To access the api you can use the REST controller with the path DELETE /v1/categories/:categoryId
axios({
method: 'DELETE',
url: `/v1/categories/${categoryId}`,
data: {
},
params: {
}
});
REST Response
{
"status": "OK",
"statusCode": "200",
"elapsedMs": 126,
"ssoTime": 120,
"source": "db",
"cacheKey": "hexCode",
"userId": "ID",
"sessionId": "ID",
"requestId": "ID",
"dataName": "category",
"method": "DELETE",
"action": "delete",
"appVersion": "Version",
"rowCount": 1,
"category": {
"id": "ID",
"description": "Text",
"icon": "String",
"name": "String",
"parentCategoryId": "ID",
"slug": "String",
"sortOrder": "Integer",
"isActive": false,
"recordVersion": "Integer",
"createdAt": "Date",
"updatedAt": "Date",
"_owner": "ID"
}
}
Delete Location API
Soft-delete a location for admin-only. Used for removing obsolete/corrected locations.
API Frontend Description By The Backend Architect
Admin-only. Set isActive=false to remove location from public selectors. If referenced elsewhere, deletion may be blocked until listings/categories updated.
Rest Route
The deleteLocation API REST controller can be triggered
via the following route:
/v1/locations/:locationId
Rest Request Parameters
The deleteLocation api has got 1 regular request
parameter
| Parameter | Type | Required | Population |
|---|---|---|---|
| locationId | ID | true | request.params?.[“locationId”] |
| locationId : This id paremeter is used to select the required data object that will be deleted |
REST Request To access the api you can use the REST controller with the path DELETE /v1/locations/:locationId
axios({
method: 'DELETE',
url: `/v1/locations/${locationId}`,
data: {
},
params: {
}
});
REST Response
{
"status": "OK",
"statusCode": "200",
"elapsedMs": 126,
"ssoTime": 120,
"source": "db",
"cacheKey": "hexCode",
"userId": "ID",
"sessionId": "ID",
"requestId": "ID",
"dataName": "location",
"method": "DELETE",
"action": "delete",
"appVersion": "Version",
"rowCount": 1,
"location": {
"id": "ID",
"city": "String",
"country": "String",
"district": "String",
"latitude": "Double",
"longitude": "Double",
"postalCode": "String",
"isActive": false,
"recordVersion": "Integer",
"createdAt": "Date",
"updatedAt": "Date",
"_owner": "ID"
}
}
Get Category API
Fetch a single category by id. Publicly accessible.
API Frontend Description By The Backend Architect
Get category details for a given id. Enrich response with child category count and parent info for navigation trees. Used for editing/viewing category details.
Rest Route
The getCategory API REST controller can be triggered via
the following route:
/v1/categories/:categoryId
Rest Request Parameters
The getCategory api has got 1 regular request parameter
| Parameter | Type | Required | Population |
|---|---|---|---|
| categoryId | ID | true | request.params?.[“categoryId”] |
| categoryId : This id paremeter is used to query the required data object. |
REST Request To access the api you can use the REST controller with the path GET /v1/categories/:categoryId
axios({
method: 'GET',
url: `/v1/categories/${categoryId}`,
data: {
},
params: {
}
});
REST Response
This route’s response is constrained to a select list of properties, and therefore does not encompass all attributes of the resource.
{
"status": "OK",
"statusCode": "200",
"elapsedMs": 126,
"ssoTime": 120,
"source": "db",
"cacheKey": "hexCode",
"userId": "ID",
"sessionId": "ID",
"requestId": "ID",
"dataName": "category",
"method": "GET",
"action": "get",
"appVersion": "Version",
"rowCount": 1,
"category": {
"parentCategory": {
"name": "String",
"slug": "String"
},
"childCategories": {
"name": "String",
"slug": "String",
"isActive": true
},
"isActive": true
}
}
Get Location API
Get details of a location by id. Publicly accessible for search/forms. Used by listing creation editors, etc.
API Frontend Description By The Backend Architect
Fetch all fields for display or editing/location picker. Admins use for management forms; public users for navigation/filter search.
Rest Route
The getLocation API REST controller can be triggered via
the following route:
/v1/locations/:locationId
Rest Request Parameters
The getLocation api has got 1 regular request parameter
| Parameter | Type | Required | Population |
|---|---|---|---|
| locationId | ID | true | request.params?.[“locationId”] |
| locationId : This id paremeter is used to query the required data object. |
REST Request To access the api you can use the REST controller with the path GET /v1/locations/:locationId
axios({
method: 'GET',
url: `/v1/locations/${locationId}`,
data: {
},
params: {
}
});
REST Response
This route’s response is constrained to a select list of properties, and therefore does not encompass all attributes of the resource.
{
"status": "OK",
"statusCode": "200",
"elapsedMs": 126,
"ssoTime": 120,
"source": "db",
"cacheKey": "hexCode",
"userId": "ID",
"sessionId": "ID",
"requestId": "ID",
"dataName": "location",
"method": "GET",
"action": "get",
"appVersion": "Version",
"rowCount": 1,
"location": {
"isActive": true
}
}
List Categories API
Returns all categories (optionally filtered by parentCategoryId or isActive). Used for category trees, navigation, and dropdowns. Public.
API Frontend Description By The Backend Architect
Use this endpoint for building category selection/search trees, sidebars, or dropdowns. Accepts parentCategoryId as a filter for fetching children. Returns all data for public display. Pagination not enabled (few hundred at most). Children included via join. Optionally returns count of active children for expandable UI.
Rest Route
The listCategories API REST controller can be triggered
via the following route:
/v1/categories
Rest Request Parameters The
listCategories api has got no request parameters.
REST Request To access the api you can use the REST controller with the path GET /v1/categories
axios({
method: 'GET',
url: '/v1/categories',
data: {
},
params: {
}
});
REST Response
This route’s response is constrained to a select list of properties, and therefore does not encompass all attributes of the resource.
{
"status": "OK",
"statusCode": "200",
"elapsedMs": 126,
"ssoTime": 120,
"source": "db",
"cacheKey": "hexCode",
"userId": "ID",
"sessionId": "ID",
"requestId": "ID",
"dataName": "categories",
"method": "GET",
"action": "list",
"appVersion": "Version",
"rowCount": "\"Number\"",
"categories": [
{
"childCategories": [
{
"name": "String",
"slug": "String",
"isActive": true
},
{},
{}
],
"activeChildCount": [
null,
null,
null
],
"isActive": true
},
{},
{}
],
"paging": {
"pageNumber": "Number",
"pageRowCount": "NUmber",
"totalRowCount": "Number",
"pageCount": "Number"
},
"filters": [],
"uiPermissions": []
}
List Locations API
List all locations (optionally filter by country/city/district). Used for populating selectors and browsing. Public. No pagination (few thousand max).
API Frontend Description By The Backend Architect
Request all locations or optionally filter by country/city/district for cascading selectors. Public use for forms, admin for management. If needed, can expand to support location grouping/child-count in future.
Rest Route
The listLocations API REST controller can be triggered
via the following route:
/v1/locations
Rest Request Parameters The
listLocations api has got no request parameters.
REST Request To access the api you can use the REST controller with the path GET /v1/locations
axios({
method: 'GET',
url: '/v1/locations',
data: {
},
params: {
}
});
REST Response
This route’s response is constrained to a select list of properties, and therefore does not encompass all attributes of the resource.
{
"status": "OK",
"statusCode": "200",
"elapsedMs": 126,
"ssoTime": 120,
"source": "db",
"cacheKey": "hexCode",
"userId": "ID",
"sessionId": "ID",
"requestId": "ID",
"dataName": "locations",
"method": "GET",
"action": "list",
"appVersion": "Version",
"rowCount": "\"Number\"",
"locations": [
{
"isActive": true
},
{},
{}
],
"paging": {
"pageNumber": "Number",
"pageRowCount": "NUmber",
"totalRowCount": "Number",
"pageCount": "Number"
},
"filters": [],
"uiPermissions": []
}
Update Category API
Update an existing category. Only admin allowed. Slug uniqueness enforced.
API Frontend Description By The Backend Architect
Admins can update any field of a category including parent/child relationships. Changing parentCategoryId triggers structure update. Slug must remain unique.
Rest Route
The updateCategory API REST controller can be triggered
via the following route:
/v1/categories/:categoryId
Rest Request Parameters
The updateCategory api has got 7 regular request
parameters
| Parameter | Type | Required | Population |
|---|---|---|---|
| categoryId | ID | true | request.params?.[“categoryId”] |
| description | Text | false | request.body?.[“description”] |
| icon | String | false | request.body?.[“icon”] |
| name | String | false | request.body?.[“name”] |
| parentCategoryId | ID | false | request.body?.[“parentCategoryId”] |
| slug | String | false | request.body?.[“slug”] |
| sortOrder | Integer | false | request.body?.[“sortOrder”] |
| categoryId : This id paremeter is used to select the required data object that will be updated | |||
| description : Optional extended description for category (for admin display or frontend info). | |||
| icon : Icon identifier (string or URL to a static asset) for this category. | |||
| name : Category name, e.g. ‘Automobiles’, ‘Electronics’. | |||
| parentCategoryId : References parent category for hierarchy. Top-level (root) categories have null. | |||
| slug : SEO-friendly unique slug for URL and search. Lowercase, hyphens only. | |||
| sortOrder : Order for listing within siblings. Unique per parent. |
REST Request To access the api you can use the REST controller with the path PATCH /v1/categories/:categoryId
axios({
method: 'PATCH',
url: `/v1/categories/${categoryId}`,
data: {
description:"Text",
icon:"String",
name:"String",
parentCategoryId:"ID",
slug:"String",
sortOrder:"Integer",
},
params: {
}
});
REST Response
{
"status": "OK",
"statusCode": "200",
"elapsedMs": 126,
"ssoTime": 120,
"source": "db",
"cacheKey": "hexCode",
"userId": "ID",
"sessionId": "ID",
"requestId": "ID",
"dataName": "category",
"method": "PATCH",
"action": "update",
"appVersion": "Version",
"rowCount": 1,
"category": {
"id": "ID",
"description": "Text",
"icon": "String",
"name": "String",
"parentCategoryId": "ID",
"slug": "String",
"sortOrder": "Integer",
"isActive": true,
"recordVersion": "Integer",
"createdAt": "Date",
"updatedAt": "Date",
"_owner": "ID"
}
}
Update Location API
Update existing location entry. Only admin allowed. Composite key must remain unique.
API Frontend Description By The Backend Architect
Admin-only. Location string fields (country, city, district) must not create a duplicate. Use for typo correction or boundary updates; minimal public usage.
Rest Route
The updateLocation API REST controller can be triggered
via the following route:
/v1/locations/:locationId
Rest Request Parameters
The updateLocation api has got 7 regular request
parameters
| Parameter | Type | Required | Population |
|---|---|---|---|
| locationId | ID | true | request.params?.[“locationId”] |
| city | String | false | request.body?.[“city”] |
| country | String | false | request.body?.[“country”] |
| district | String | false | request.body?.[“district”] |
| latitude | Double | false | request.body?.[“latitude”] |
| longitude | Double | false | request.body?.[“longitude”] |
| postalCode | String | false | request.body?.[“postalCode”] |
| locationId : This id paremeter is used to select the required data object that will be updated | |||
| city : City name. | |||
| country : Country name (typically ‘Turkey’). | |||
| district : District name, for fine-grained search. | |||
| latitude : Latitude for map/search. | |||
| longitude : Longitude for map/search. | |||
| postalCode : Postal code for location. |
REST Request To access the api you can use the REST controller with the path PATCH /v1/locations/:locationId
axios({
method: 'PATCH',
url: `/v1/locations/${locationId}`,
data: {
city:"String",
country:"String",
district:"String",
latitude:"Double",
longitude:"Double",
postalCode:"String",
},
params: {
}
});
REST Response
{
"status": "OK",
"statusCode": "200",
"elapsedMs": 126,
"ssoTime": 120,
"source": "db",
"cacheKey": "hexCode",
"userId": "ID",
"sessionId": "ID",
"requestId": "ID",
"dataName": "location",
"method": "PATCH",
"action": "update",
"appVersion": "Version",
"rowCount": 1,
"location": {
"id": "ID",
"city": "String",
"country": "String",
"district": "String",
"latitude": "Double",
"longitude": "Double",
"postalCode": "String",
"isActive": true,
"recordVersion": "Integer",
"createdAt": "Date",
"updatedAt": "Date",
"_owner": "ID"
}
}
_fetch Listcategory API
System API to fetch list of category records for frontend application. Auto-generated, not visible in design.
Rest Route
The _fetchListCategory API REST controller can be
triggered via the following route:
/v1/_fetchlistcategory
Rest Request Parameters
Filter Parameters
The _fetchListCategory api supports 3 optional filter
parameters for filtering list results:
name (String): Category name, e.g.
‘Automobiles’, ‘Electronics’.
-
Single (partial match, case-insensitive):
?name=<value> -
Multiple:
?name=<value1>&name=<value2> - Null:
?name=null
parentCategoryId (ID): References parent
category for hierarchy. Top-level (root) categories have null.
- Single:
?parentCategoryId=<value> -
Multiple:
?parentCategoryId=<value1>&parentCategoryId=<value2> - Null:
?parentCategoryId=null
slug (String): SEO-friendly unique slug
for URL and search. Lowercase, hyphens only.
-
Single (partial match, case-insensitive):
?slug=<value> -
Multiple:
?slug=<value1>&slug=<value2> - Null:
?slug=null
REST Request To access the api you can use the REST controller with the path GET /v1/_fetchlistcategory
axios({
method: 'GET',
url: '/v1/_fetchlistcategory',
data: {
},
params: {
// Filter parameters (see Filter Parameters section above)
// name: '<value>' // Filter by name
// parentCategoryId: '<value>' // Filter by parentCategoryId
// slug: '<value>' // Filter by slug
}
});
REST Response
{
"status": "OK",
"statusCode": "200",
"elapsedMs": 126,
"ssoTime": 120,
"source": "db",
"cacheKey": "hexCode",
"userId": "ID",
"sessionId": "ID",
"requestId": "ID",
"dataName": "categories",
"method": "GET",
"action": "list",
"appVersion": "Version",
"rowCount": "\"Number\"",
"categories": [
{
"id": "ID",
"description": "Text",
"icon": "String",
"name": "String",
"parentCategoryId": "ID",
"slug": "String",
"sortOrder": "Integer",
"isActive": true,
"recordVersion": "Integer",
"createdAt": "Date",
"updatedAt": "Date",
"_owner": "ID",
"parent": [
{
"description": "Text",
"icon": "String",
"name": "String",
"parentCategoryId": "ID",
"slug": "String",
"sortOrder": "Integer"
},
{},
{}
]
},
{},
{}
],
"paging": {
"pageNumber": "Number",
"pageRowCount": "NUmber",
"totalRowCount": "Number",
"pageCount": "Number"
},
"filters": [],
"uiPermissions": []
}
_fetch Listlocation API
System API to fetch list of location records for frontend application. Auto-generated, not visible in design.
Rest Route
The _fetchListLocation API REST controller can be
triggered via the following route:
/v1/_fetchlistlocation
Rest Request Parameters
Filter Parameters
The _fetchListLocation api supports 3 optional filter
parameters for filtering list results:
city (String): City name.
-
Single (partial match, case-insensitive):
?city=<value> -
Multiple:
?city=<value1>&city=<value2> - Null:
?city=null
country (String): Country name
(typically ‘Turkey’).
-
Single (partial match, case-insensitive):
?country=<value> -
Multiple:
?country=<value1>&country=<value2> - Null:
?country=null
district (String): District name, for
fine-grained search.
-
Single (partial match, case-insensitive):
?district=<value> -
Multiple:
?district=<value1>&district=<value2> - Null:
?district=null
REST Request To access the api you can use the REST controller with the path GET /v1/_fetchlistlocation
axios({
method: 'GET',
url: '/v1/_fetchlistlocation',
data: {
},
params: {
// Filter parameters (see Filter Parameters section above)
// city: '<value>' // Filter by city
// country: '<value>' // Filter by country
// district: '<value>' // Filter by district
}
});
REST Response
{
"status": "OK",
"statusCode": "200",
"elapsedMs": 126,
"ssoTime": 120,
"source": "db",
"cacheKey": "hexCode",
"userId": "ID",
"sessionId": "ID",
"requestId": "ID",
"dataName": "locations",
"method": "GET",
"action": "list",
"appVersion": "Version",
"rowCount": "\"Number\"",
"locations": [
{
"id": "ID",
"city": "String",
"country": "String",
"district": "String",
"latitude": "Double",
"longitude": "Double",
"postalCode": "String",
"isActive": true,
"recordVersion": "Integer",
"createdAt": "Date",
"updatedAt": "Date",
"_owner": "ID"
},
{},
{}
],
"paging": {
"pageNumber": "Number",
"pageRowCount": "NUmber",
"totalRowCount": "Number",
"pageCount": "Number"
},
"filters": [],
"uiPermissions": []
}
After this prompt, the user may give you new instructions to update the output of this prompt or provide subsequent prompts about the project.