Material Categories
API endpoints for managing material categories
GET /materials/categories
Get List of Materials Categories (Without Pagination) Endpoint
Endpoint: GET /open-api/v1/materials/categories
Description
Fetches a complete list of material categories from the Simplio3D API without pagination.
Request Headers
Authorization: Bearer token required.
Sample Request
GET /open-api/v1/materials/categories HTTP/1.1
Host: api.simplio3d.com
Authorization: Bearer {your_api_token}Response
Status Code:
200 OKBody: A JSON array containing the material categories available.
Get all materials categories without pagination.
Enter token in format (Bearer <your_token>)
Column to order the results by (default: created_at)
nameOrder direction (asc or desc, default: desc)
ascPossible values: Successful response
Unauthorized
Internal Server Error
GET /materials/categories/{id}
Get a Specific Material Category by ID
Response
Status Code:
200 OKMaterials Not Found: 404
Unauthorized: 401
Get a specific materials category by ID.
Enter token in format (Bearer <your_token>)
ID of the materials category
Successful response
Unauthorized
Materials category not found
Last updated
Was this helpful?