GET/spaces/api/v0/users/{userID}/reading.json

get fetches a users required reading.

Path Params

  • Name
    userID
    Type
    integer
    required
    Description

Responses

  • Code
    200
    Type
    object
    Schema
    Description
    200 OK
  • Code
    404
    Type
    object
    Schema
    Description
    404 Not Found
  • Code
    500
    Type
    object
    Schema
    Description
    500 Internal Server Error

Examples

200 OK

ReadingItem
{
  "reading": [
    {
      "installationId": 0,
      "pageCreatedAt": "2024-07-26T20:26:26.553Z",
      "pageCreatedBy": {
        "id": 0,
        "meta": {},
        "type": "string"
      },
      "pageDeletedAt": "2024-07-26T20:26:26.553Z",
      "pageDeletedBy": {
        "id": 0,
        "meta": {},
        "type": "string"
      },
      "pageId": 0,
      "pageSlug": "string",
      "pageTitle": "string",
      "pageUpdatedAt": "2024-07-26T20:26:26.553Z",
      "pageUpdatedBy": {
        "id": 0,
        "meta": {},
        "type": "string"
      },
      "revision": 0,
      "space": {
        "id": 0,
        "meta": {},
        "type": "string"
      },
      "state": "string"
    }
  ]
}