Fetching the model Attributes
Developing
GET
/model/attributes
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/model/attributes'
Response Response Example
{
"status": 200,
"message": "Model attributes retrieved successfully",
"data": [
{
"id": "attribute_1",
"name": "Material",
"value": "Steel",
"type": "string",
"pickModelId": "model_123",
"createdAt": "2025-06-01T10:30:00.000Z",
"updatedAt": "2025-06-01T10:30:00.000Z"
},
{
"id": "attribute_2",
"name": "Weight",
"value": "15kg",
"type": "string",
"pickModelId": "model_123",
"createdAt": "2025-06-01T10:30:00.000Z",
"updatedAt": "2025-06-01T10:30:00.000Z"
}
// ... More attributes
]
}
Request
Responses
Modified at 2025-06-02 14:21:29