/api/v2/bpm/properties/types
Метод возвращает список типов свойств
Query Parameters
- q string
Регистронезависимая подстрока, фильтр по "name"
Example: o - offset integer
Параметр содержащий порядковый номер элемента, после которого будут показаны остальные результаты
Example: 1 - limit integer
Параметр содержащий максимальное кол-во элементов в ответе
Example: 100
Header Parameters
- Authorization stringExample: {{token}}
Responses
- 200
- 401
OK
- application/json
- Schema
- Example (from schema)
- Example
Schema
- object
{}
{
"status": 1,
"message": "",
"response": {
"propertiesTypes": [
{
"id": 6,
"name": "object",
"description": null,
"settings": null
},
{
"id": 7,
"name": "bool",
"description": null,
"settings": null
}
],
"offset": 1,
"total": 3,
"all": 2
},
"preparingsTime": 0.067
}
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.004
}
Loading...