Menu

List models

Create API

GET https://api-staging-v2.logyx.it/v1/models

About

Retrieve all models.

The response does not include model sections. If you want to include model sections, you need to make individual API calls to the model endpoint.

Response

{
    "code": 200,
    "message": "We have processed your request.",
    "data": [
        {
            "id": 1,
            "version_id": 1,
            "created_at": "2023-01-13T10:42:01.418255",
            "updated_at": null,
            "general": {
                "name": "Example"
            }
        }
    ],
    "links": {},
    "errors": []
}
Menu