Texture Categories
Retrieve texture categories endpoints
GET /textures-categories/list
Endpoint: Retrieve All Texture Categories
[
{
"id": "1",
"name": "Wood"
},
{
"id": "2",
"name": "Metal"
},
{
"id": "3",
"name": "Stone"
}
// ... more categories
]Authorizations
AuthorizationstringRequired
Enter token in format (Bearer <your_token>)
Query parameters
order_bystringOptionalExample:
Column to order results by (e.g., 'created_at')
created_atorderstring · enumOptionalExample:
Sorting order (asc or desc)
descPossible values: Responses
200
Successful response
application/json
401
Unauthorized
500
Internal server error
get
/api/open-api/v1/textures-categories/listGET /textures-categories/{id}
Get Texture Category by ID - GET Endpoint
Authorizations
AuthorizationstringRequired
Enter token in format (Bearer <your_token>)
Path parameters
idinteger · int64Required
ID of the texture category
Responses
200
Successful response
application/json
401
Unauthorized
404
Texture category not found
get
/api/open-api/v1/textures-categories/{id}GET /textures-categories
Get List of Texture Categories
Authorizations
AuthorizationstringRequired
Enter token in format (Bearer <your_token>)
Query parameters
per_pageintegerOptionalExample:
Number of records per page (-1 for all records)
25pageintegerOptionalExample:
Number of page
2order_bystringOptionalExample:
Column to sort by
created_atorderstringOptionalExample:
Sort order (asc/desc)
descResponses
200
Successful response
No content
401
Unauthorized
500
Internal Server Error
get
/api/open-api/v1/textures-categoriesNo content
Last updated