Cochrane+ App API

<back to all web services

GetDebriefReviewRequest

Requires Authentication
The following routes are available for this service:
GET/debriefreview/{Id}
Imports System
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports WebService.ServiceModel
Imports WebService.ServiceModel.Base
Imports CommonService.Api.Models.Base

Namespace Global

    Namespace CommonService.Api.Models.Base

        Public Partial Class ApiServiceResponse
            Implements IServiceResponse
            Public Overridable Property Description As String
            Public Overridable Property Heading As String
            Public Overridable Property WasSuccessful As Boolean
            Public Overridable Property ModelState As Object
        End Class
    End Namespace

    Namespace WebService.ServiceModel

        Public Partial Class DebriefRatingCommentDetail
            Public Overridable Property ManagerId As Integer
            Public Overridable Property Name As String
            Public Overridable Property Title As String
            Public Overridable Property ReviewedDate As String
            Public Overridable Property Rating As Integer
            Public Overridable Property Comments As String
        End Class

        Public Partial Class DebriefReviewData
            Public Sub New()
                NewContacts = New List(Of NewContactDetail)
                RatingCommentDetails = New List(Of DebriefRatingCommentDetail)
            End Sub

            Public Overridable Property Id As Integer
            Public Overridable Property Name As String
            Public Overridable Property CompanyName As String
            Public Overridable Property MeetingId As Integer
            Public Overridable Property LinkedToMeeting As String
            Public Overridable Property MeetingTime As String
            Public Overridable Property Address As String
            Public Overridable Property Research As String
            Public Overridable Property NextSteps As String
            Public Overridable Property Feedback As String
            Public Overridable Property NewOpportunities As String
            Public Overridable Property PersonnelInfo As String
            Public Overridable Property GroupStructure As String
            Public Overridable Property Industry As String
            Public Overridable Property MeetingLatitude As Double
            Public Overridable Property MeetingLongitude As Double
            Public Overridable Property RecordingLength As String
            Public Overridable Property RecordingTooShort As String
            Public Overridable Property MajoritySilent As String
            Public Overridable Property VolumeTooLow As String
            Public Overridable Property ActionsToTake As String
            Public Overridable Property MeetingSummary As String
            Public Overridable Property Polarity As String
            Public Overridable Property Sentiment As String
            Public Overridable Property NotesForManagement As String
            Public Overridable Property NotesForSalesPerson As String
            Public Overridable Property OverallScore As String
            Public Overridable Property PersonalAppeal As String
            Public Overridable Property Vocabulary As String
            Public Overridable Property Equipment As String
            Public Overridable Property Structure As String
            Public Overridable Property Coherence As String
            Public Overridable Property SectorKnowledge As String
            Public Overridable Property ClarityOfTechnicalInput As String
            Public Overridable Property CaseStudyRelevance As String
            Public Overridable Property Storytelling As String
            Public Overridable Property Summation As String
            Public Overridable Property DynamicDiscussion As String
            Public Overridable Property Listening As String
            Public Overridable Property NewContacts As List(Of NewContactDetail)
            Public Overridable Property ReportUrl As String
            Public Overridable Property RatingCommentDetails As List(Of DebriefRatingCommentDetail)
        End Class

        Public Partial Class GetDebriefReviewRequest
            Inherits ApiServiceRequest
            Public Overridable Property Id As Integer
        End Class

        Public Partial Class GetDebriefReviewResponse
            Inherits ApiServiceResponse
            Public Overridable Property Data As DebriefReviewData
        End Class

        Public Partial Class NewContactDetail
            Public Overridable Property Name As String
            Public Overridable Property JobTitle As String
            Public Overridable Property CompanyName As String
            Public Overridable Property EmailAddress As String
            Public Overridable Property ContactNumber As String
        End Class
    End Namespace

    Namespace WebService.ServiceModel.Base

        Public Partial Class ApiServiceRequest
            Implements IServiceRequest
            Implements IHasApiKey
            Implements IHasDeviceInfo
            '''<Summary>
            '''The API Key required for authentication
            '''</Summary>
            <ApiMember(DataType:="string", Description:="The API Key required for authentication", IsRequired:=true)>
            Public Overridable Property ApiKey As String

            '''<Summary>
            '''Latitude of the user making this request
            '''</Summary>
            <ApiMember(DataType:="double", Description:="Latitude of the user making this request")>
            Public Overridable Property Latitude As Double

            '''<Summary>
            '''Longitude of the user making this request
            '''</Summary>
            <ApiMember(DataType:="double", Description:="Longitude of the user making this request")>
            Public Overridable Property Longitude As Double
        End Class
    End Namespace
End Namespace

VB.NET GetDebriefReviewRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other

HTTP + OTHER

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

GET /debriefreview/{Id} HTTP/1.1 
Host: cochraneplus-api-dev.happen.zone 
Accept: text/jsonl
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length

{"data":{"id":0,"name":"String","companyName":"String","meetingId":0,"linkedToMeeting":"String","meetingTime":"String","address":"String","research":"String","nextSteps":"String","feedback":"String","newOpportunities":"String","personnelInfo":"String","groupStructure":"String","industry":"String","meetingLatitude":0,"meetingLongitude":0,"recordingLength":"String","recordingTooShort":"String","majoritySilent":"String","volumeTooLow":"String","actionsToTake":"String","meetingSummary":"String","polarity":"String","sentiment":"String","notesForManagement":"String","notesForSalesPerson":"String","overallScore":"String","personalAppeal":"String","vocabulary":"String","equipment":"String","structure":"String","coherence":"String","sectorKnowledge":"String","clarityOfTechnicalInput":"String","caseStudyRelevance":"String","storytelling":"String","summation":"String","dynamicDiscussion":"String","listening":"String","newContacts":[{}],"reportUrl":"String","ratingCommentDetails":[{"managerId":0,"name":"String","title":"String","reviewedDate":"String","rating":0,"comments":"String"}]},"description":"String","heading":"String","wasSuccessful":false,"modelState":{}}