table – Работа с таблицами

Используется для получения информации о структуре пользовательских таблиц, о правах доступа к таблице

GET /table

Получить список пользовательских таблиц и права доступа к ним

Request

Headers

Content-Type: required(string)

Example:

application/vnd.api+json

X-Auth-Token: required(string)

Example:

vV3RSKE7AfBGrPKryBry2pnG0knK1NLbt765y0Aji2pOHhHV

Response

HTTP status code 200

Body

Media type: application/vnd.api+json

Type: object

Example:

{
"data": [
{
  "type": "table",
  "id": "20",
  "attributes": {
    "table_name": "Документы",
    "category_id": 2,
    "category_sequence_number": 6,
    "full_name": "Общие документы"
  },
  "meta": {
    "access": {
      "create": true,
      "read": false,
      "update": false,
      "delete": true,
      "archive": true,
      "bed": true,
      "print": false,
      "sms": false,
      "send": false,
      "free_sms_template": false,
      "free_mail_template": false,
      "standart_template": true
    }
  }
},
{
  "type": "table",
  "id": "42",
  "attributes": {
    "table_name": "Клиенты",
    "category_id": 1,
    "category_sequence_number": 1,
    "full_name": "Компании"
  },
  "meta": {
    "access": {
      "create": true,
      "read": false,
      "update": false,
      "delete": true,
      "archive": true,
      "bed": true,
      "print": false,
      "sms": false,
      "send": false,
      "free_sms_template": false,
      "free_mail_template": false,
      "standart_template": true
    }
  }  
}
]
}

HTTP status code 404

Запрашиваемый объект не обнаружен

HTTP status code 443

Нет прав доступа к запрашиваемому объекту