Material Categories
API endpoints for managing material categories
GET /materials/categories
Get List of Materials Categories (Without Pagination) Endpoint
Description
Request Headers
Sample Request
GET /open-api/v1/materials/categories HTTP/1.1
Host: api.simplio3d.com
Authorization: Bearer {your_api_token}Response
Authorizations
AuthorizationstringRequired
Enter token in format (Bearer <your_token>)
Query parameters
order_bystringOptionalExample:
Column to order the results by (default: created_at)
nameorderstring · enumOptionalExample:
Order direction (asc or desc, default: desc)
ascPossible values: Responses
200
Successful response
application/json
401
Unauthorized
500
Internal Server Error
get
/api/open-api/v1/materials-categories/listGET /materials/categories/{id}
Get a Specific Material Category by ID
Response
Authorizations
AuthorizationstringRequired
Enter token in format (Bearer <your_token>)
Path parameters
idinteger · int64Required
ID of the materials category
Responses
200
Successful response
application/json
401
Unauthorized
404
Materials category not found
get
/api/open-api/v1/materials-categories/{id}Last updated