/api/v2/bpm/properties/types/{type_id}
Метод возвращает тип свойств по ID
Path Parameters
- type_id integer required
ID типа свойства
Example: 9
Responses
- 200
- 400
- 401
OK
- application/json
- Schema
- Example (from schema)
- Example
Schema
- object
{}
{
"status": 1,
"message": "",
"response": {
"id": 9,
"name": "RGB",
"description": "red, green, blue",
"settings": {
"red": [
0,
255
],
"blue": [
0,
255
],
"green": [
0,
255
]
}
},
"preparingsTime": 0.054
}
Bad Request
- application/json
- Schema
- Example (from schema)
- Example
Schema
- object
{}
{
"status": 0,
"message": "Not found",
"response": {},
"preparingsTime": 0.055
}
Unauthorized
- application/json
- Schema
- Example (from schema)
- Example
Schema
- object
{}
{
"status": 0,
"message": "Authentication credentials were not provided.",
"response": {
"detail": "Authentication credentials were not provided."
},
"preparingsTime": 0.002
}
Loading...