Share Candidate

If ‘Share Candidates’ feature available on company level and enabled on project level candidates can be shared with other customer in the company. These customers will get access to candidate’s answer videos.

Attributes

Name Type Description
resource_uri reference read only
candidate reference read only
customer reference  

List

/companies/{{companyId}}/projects/{{projectId}}/candidates/{{candidateId}}/shares/

Methods

  • GET
  • POST

Example response

{
  "meta": {
    "total_count": 1,
    "previous": null,
    "next": null
  },
  "objects": [
    {
      "resource_uri": "https://interview-suite.com/api/v3/companies/1/projects/17/candidates/19/shares/1/",
      "candidate": "https://interview-suite.com/api/v3/companies/1/projects/17/candidates/19/",
      "customer": "https://interview-suite.com/api/v3/companies/1/customers/1/"
    }
  ]
}

Object

/companies/{{companyId}}/projects/{{projectId}}/candidates/{{candidateId}}/shares/{{shareId}}

Methods

  • GET
  • PATCH
  • DELETE

Example response

{
  "resource_uri": "https://interview-suite.com/api/v3/companies/1/projects/17/candidates/19/shares/1/",
  "candidate": "https://interview-suite.com/api/v3/companies/1/projects/17/candidates/19/",
  "customer": "https://interview-suite.com/api/v3/companies/1/customers/1/"
}

All shares sent to customer

Logged in customer can get all shared candidates using this endpoint.

/companies/{{companyId}}/shares/

Methods

  • GET