Meetings

Просмотр страницы собрания

get

Извлеките отдельную встречу, указанную в параметре id

Authorizations
Path parameters
idintegerRequired

Идентификатор собрания

Example: 1
Responses
200
OK
application/hal+json
get
GET /op/api/v3/meetings/{id} HTTP/1.1
Host: example.u-meteor.ru
Authorization: Basic username:password
Accept: */*
{
  "_embedded": {
    "project": {
      "_type": "Project...",
      "id": 12
    },
    "author": {
      "_type": "User...",
      "id": 2
    }
  },
  "_links": {
    "addAttachment": {
      "href": "/api/v3/meetings/72/attachments",
      "method": "post"
    },
    "attachments": {
      "href": "/api/v3/meetings/72/attachments"
    },
    "project": {
      "href": "/api/v3/projects/12",
      "title": "some project"
    },
    "author": {
      "href": "/api/v3/users/2",
      "title": "Peggie Feeney"
    },
    "self": {
      "href": "/api/v3/meetings/72"
    }
  },
  "_type": "Meeting",
  "id": 72,
  "lockVersion": 5,
  "title": "A meeting",
  "startTime": "2014-05-21T08:00:00.000Z",
  "duration": 120,
  "createdAt": "2014-05-21T08:51:20.396Z",
  "updatedAt": "2014-05-21T09:14:02.776Z"
}