List Interviews in a Risk Project

Returns the list of interviews available in a specific risk project, including their respective properties (status, percentage of progress, deadline, etc.).

 

URL

{RMUrl}/api/risk/projects/{project_code}/interviews[?[page=<Page>][[&]page_size=<PageSize>]]

 

REQUEST METHOD

GET

 

URL PARAMETERS

project_code: identifier of the project whose interviews will be listed.

page: Number of the page to be displayed. Valid values: 1 to the maximum number of pages. If omitted, the value 1 is used. If the value is greater than the maximum number of pages, a blank list will be returned.

page_size: Number of items displayed per page. Valid values: 1 to 1,000. If omitted, the default value of 10 is used.

 

REQUEST EXAMPLE

Results 11 through 20 of the second page, with 10 items displayed per page:

{RMUrl}/api/risk/projects/PRJ0001/interviews?page_size=10&page=2

 

SUCCESS RESPONSE

Returns a list of the interviews available in the project specified, including their respective properties (status, percentage of progress, deadline, etc.).

 

SUCCESS RESPONSE EXAMPLES

[

  {

    "Id": "6da7c541-19e5-11e5-8281-94de80c028b6",

    "Status": "NotSent",

    "CompletionRate": 0.0           

    "Asset": {

      "Id": "3812a707-3f1c-4b63-aeaa-80ca488a30dd",

      "Name": "Technology Asset"

    },

    "AssetComponent": {

      "Id": "1698fdc9-1462-11e5-8280-94de80c028b6",

      "Name": "Technology Asset Component"

    },

    "KnowledgeBase": {

      "Version": 5.9,

      "CustomerID": "MOD_EN.000060",

      "Id": "d62f52c4-9390-4e05-a0cb-ef7e4a48a094",

      "Name": "Associated Knowledge Base"

    },

    "Survey": {

      "Version": 1.2,

      "CustomerID": "MOD_EN.00000422",

      "Id": "f6a3f8b8-c1e8-11e4-8269-94de80c028b6",

      "Name": "Associated Survey"

    },

    "Interviewee": {

      "Id": "2c4b18ee-bb67-11e4-8263-94de80c028b6",

      "Name": "Charles Smith"

    },

    "Questionnaire": {

      "Id": 2,

      "OpenedOn": "/Date(1435087015560-0300)/",

      "Status": "Open",

      "StatusCode": 1

    },

  }

]