• Home
  • Resources
  • Objects
  • Guide
    • What is an API
    • Creating an app
    • Using the API
    • Troubleshooting
    • Login
    • IQL query language
    • API Playground
    • Get started
    • Error messages
    • Access scopes
    • Introduction to general concepts
  • Home>
  • Resources>
  • appraisals/user/(id)/get

GET appraisals/user/(id)/get

Return all the appraisals of a given user.

Resource information

Request method GET
Response object Appraisal
Access scope appraisal_get
Response format JSON, XML

Parameters

Limit
optional
Maximum number of items to return. All items will be returned if no limit is set.
Offset
optional
Start location within the result set for pagination. Zero-based number. To get the second page of 10 results per page, specify 10, not 1. The default value is 0.

Example

https://api.induct.no/v1/appraisals/user/12345

JSON result:

[
    {
        "id": 202197,
        "senderId": {
            "id": 2008,
            "firstName": "Hailee",
            "lastName": "Howe",
            "firstNameLastName": "Hailee Howe",
            "inductId": "tad77@robel.us",
            "profileImage": {
                "id": 133587
            }
        },
        "receiverId": {
            "id": 2624
        },
        "competenceId": 1,
        "createdAt": "2016-06-30T07:34:53Z",
        "messageBody": "You've done a very good job in this area. Congratulations!!",
        "isPrivate": false,
        "isReminded": false,
        "adminScore": 0,
        "allowComment": false,
        "company": {
            "id": 181
        },
        "comments": [
            {
                "id": 68281,
                "createdAt": "2017-01-18T15:33:50Z",
                "text": "Commented appraisal",
                "createdBy": {
                    "id": 2625
                },
                "subComments": [
                    {
                        "id": 68282,
                        "createdAt": "2017-01-18T15:34:19Z",
                        "text": "And sub commented",
                        "createdBy": {
                            "id": 2625
                        },
                        "subComments": []
                    }
                ]
            }
        ],
        "totalCommentCount": 2,
        "totalLikesCount": 1
    }
]

Induct API 1.0

Last API system update:
11/23/2020 8:43:56 AM

↑ Back to top

© Induct Software AS