GET
/
v1.0
/
{company_id}
/
feedback
curl --request GET \
  --url https://api.hirehive.com/v1.0/{company_id}/feedback \
  --header 'Authorization: Bearer <token>'
{
  "meta": {
    "page_size": 123,
    "page": 123,
    "total_items": 123,
    "total_pages": 123,
    "has_next_page": true,
    "has_previous_page": true
  },
  "links": {
    "first": "<string>",
    "last": "<string>",
    "next": "<string>",
    "previous": "<string>"
  },
  "items": [
    {
      "id": "<string>",
      "application_id": "<string>",
      "form_id": "<string>",
      "candidate": {
        "id": "<string>",
        "name": "<string>"
      },
      "name": "<string>",
      "creator": {
        "id": "<string>",
        "name": "<string>"
      },
      "reviewer": {
        "id": "<string>",
        "name": "<string>"
      },
      "status": "pending",
      "date_created": "2023-11-07T05:31:56Z",
      "date_complete": "2023-11-07T05:31:56Z",
      "questions": [
        {
          "id": "<string>",
          "type": "textbox",
          "question": "<string>",
          "description": "<string>",
          "required": true,
          "restricted": true,
          "display_order": 123,
          "options": [
            {
              "id": "<string>",
              "label": "<string>",
              "description": "<string>"
            }
          ],
          "answer": {
            "question_id": "<string>",
            "text": "<string>",
            "ratings": [
              {
                "option_id": "<string>",
                "rating": 123
              }
            ],
            "selected_options": [
              "<string>"
            ],
            "selected_option": "<string>"
          }
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

company_id
string
required

Query Parameters

sort
string

Sortable fields: date_complete, date_created.

application_id
string | null

Filter feedback for a specific application id. Format app_1a2b3c

creator_id
string | null

Filter feedback created by a specific user id. Format usr_1a2b3c

reviewer_id
string | null

Filter feedback completed by a specific user id. Format usr_1a2b3c

form_id
string | null

Filter feedback by the form_id. Format form_1a2b3c

status
enum<string>

Filter feedback by status

Available options:
pending,
complete
page
integer

Defaults to 1

page_size
integer

Defaults to 30. Min = 1. Max = 100

Required range: 1 <= x <= 100

Response

200
application/json
meta
object
items
object[]