Simplio3D
HomeHelp Center
  • INTRODUCTION
  • GETTING STARTED
    • Create an account
    • Prepare 3D models
  • LEARNING THE APP
    • Dashboard
    • My Account
    • Products
      • New Product
      • Select Layout
      • Add 3D Models
        • 3D Model versions
      • Create Options
        • Default
        • Sections
        • Dropdown
        • Material
        • Checkbox
        • Toggle
        • Thumbnails
        • Arrows
        • Upload
        • Text
        • Numeral
          • Sizing: Keep the proportions
        • Restrictions
          • 'Has one or more variants selected from' type of restriction
          • 'The variant value is between min and max' type of restriction
      • Pricing
        • Pricing formula
        • Variables
        • Add price
      • Add form
        • Add Field
        • Email Settings
          • Gmail
          • Sendgrid
      • Share
      • Product Viewer
    • Materials
      • New Materials
      • Textures
      • Categories
    • 3D Assets
      • Edit 3D Assets
      • Categories
      • File too large
    • Orders
  • Integrations
    • API Documentation
  • API Reference
    • Partner API
      • Managing Orders
    • Open API
      • Getting Started
      • User Authentication
      • 3D Assets
      • Configurators
      • Contact Form
        • Form Fields
        • Forms
      • Options
        • Options
        • Option Variations
        • Option Restrictions
      • Price Groups
      • Share
      • Materials
        • Materials
        • Material Categories
      • Textures
        • Textures
        • Texture Categories
      • Orders
  • Other
    • Change Log
Powered by GitBook
On this page

Was this helpful?

  1. API Reference
  2. Open API

3D Assets

Get a list of configurator 3D asset models.

GET /configurator-assets-models

Description

Retrieves a list of configurator asset models. Each model represents the configuration details of a specific asset.

URL

GET /configurator-assets-models

Query Parameters

  • page (optional): The page number of results to retrieve.

  • limit (optional): The number of results per page.

  • sort (optional): The field by which to sort the results.

Response

  • 200 OK: A successful response will return a JSON object containing:

    • models: An array of configurator asset models.

    • total: The total number of available models.

    • page: The current page number.

    • limit: The number of results per page as requested.

    Example Request

    GET /configurator-assets-models?page=1&limit=10&sort=name

    Example Response

    {
      "models": [
        {
          "id": "123",
          "name": "Model A",
          "description": "Description of Model A"
        },
        {
          "id": "124",
          "name": "Model B",
          "description": "Description of Model B"
        }
      ],
      "total": 25,
      "page": 1,
      "limit": 10
    }

    Error Responses

    • 400 Bad Request: Invalid request parameters.

    • 500 Internal Server Error: A server error occurred while processing the request.

NOTE: Ensure you have the necessary authorization credentials (e.g., Bearer Token) to access this endpoint which is taken from the 'Share' tab encryption token found at the bottom of the page.

PreviousUser AuthenticationNextConfigurators

Last updated 9 days ago

Was this helpful?

Fetch all configurator 3D asset models

get

Get a list of configurator 3D asset models.

Authorizations
Responses
200
Successful response
application/json
400
Invalid request parameters
401
Unauthorized
404
Configurator not found
500
Internal Server Error
get
GET /api/open-api/v1/configurator-assets-models HTTP/1.1
Host: app.simplio3d.com
Authorization: Bearer JWT
Accept: */*
{
  "data": [
    {
      "id": 1,
      "name": "Car Model",
      "models_url": "https://example.com/models/car.fbx",
      "preview_models_url": "https://example.com/previews/car.png",
      "models_orientation": "XYZ",
      "meshes_list": [
        "body",
        "wheels",
        "lights"
      ],
      "category_id": 5,
      "status": "active",
      "created_at": "2024-02-25T12:00:00Z",
      "updated_at": "2024-02-25T12:30:00Z",
      "created_by": "John Doe"
    }
  ]
}
  • GET /configurator-assets-models
  • GETFetch all configurator 3D asset models