Запрос

GET /project/[project_id]/fields

Передаваемые параметры

  • project_id - ID проекта

Пример запроса

curl -H 'token: someToken' https://direct.lptracker.ru/project/123/fields

Пример ответа при успешном выполнении:

{
  "status": "success",
  "result": [
    {
      "id": 124,
      "name": "Field1",
      "type": "number"
    },
    {
      "id": 125,
      "name": "Field2",
      "type": "string"
    }
  ]
}