Cochrane+ App API

<back to all web services

GetDebriefReviewRequest

Requires Authentication
The following routes are available for this service:
GET/debriefreview/{Id}
import java.math.*
import java.util.*
import net.servicestack.client.*
import com.google.gson.annotations.*
import com.google.gson.reflect.*


open class GetDebriefReviewRequest : ApiServiceRequest()
{
    var id:Int? = null
}

open class ApiServiceRequest : IServiceRequest, IHasApiKey, IHasDeviceInfo
{
    /**
    * The API Key required for authentication
    */
    @ApiMember(DataType="string", Description="The API Key required for authentication", IsRequired=true)
    var apiKey:String? = null

    /**
    * Latitude of the user making this request
    */
    @ApiMember(DataType="double", Description="Latitude of the user making this request")
    var latitude:Double? = null

    /**
    * Longitude of the user making this request
    */
    @ApiMember(DataType="double", Description="Longitude of the user making this request")
    var longitude:Double? = null
}

open class GetDebriefReviewResponse : ApiServiceResponse()
{
    @SerializedName("data") var Data:DebriefReviewData? = null
}

open class ApiServiceResponse : IServiceResponse
{
    var description:String? = null
    var heading:String? = null
    var wasSuccessful:Boolean? = null
    var modelState:Object? = null
}

open class DebriefReviewData
{
    var id:Int? = null
    var name:String? = null
    var companyName:String? = null
    var meetingId:Int? = null
    var linkedToMeeting:String? = null
    var meetingTime:String? = null
    var address:String? = null
    var research:String? = null
    var nextSteps:String? = null
    var feedback:String? = null
    var newOpportunities:String? = null
    var personnelInfo:String? = null
    var groupStructure:String? = null
    var industry:String? = null
    var meetingLatitude:Double? = null
    var meetingLongitude:Double? = null
    var recordingLength:String? = null
    var recordingTooShort:String? = null
    var majoritySilent:String? = null
    var volumeTooLow:String? = null
    var actionsToTake:String? = null
    var meetingSummary:String? = null
    var polarity:String? = null
    var sentiment:String? = null
    var notesForManagement:String? = null
    var notesForSalesPerson:String? = null
    var overallScore:String? = null
    var personalAppeal:String? = null
    var vocabulary:String? = null
    var equipment:String? = null
    var structure:String? = null
    var coherence:String? = null
    var sectorKnowledge:String? = null
    var clarityOfTechnicalInput:String? = null
    var caseStudyRelevance:String? = null
    var storytelling:String? = null
    var summation:String? = null
    var dynamicDiscussion:String? = null
    var listening:String? = null
    var newContacts:ArrayList<NewContactDetail> = ArrayList<NewContactDetail>()
    var reportUrl:String? = null
    var ratingCommentDetails:ArrayList<DebriefRatingCommentDetail> = ArrayList<DebriefRatingCommentDetail>()
}

open class NewContactDetail
{
    var name:String? = null
    var jobTitle:String? = null
    var companyName:String? = null
    var emailAddress:String? = null
    var contactNumber:String? = null
}

open class DebriefRatingCommentDetail
{
    var managerId:Int? = null
    var name:String? = null
    var title:String? = null
    var reviewedDate:String? = null
    var rating:Int? = null
    var comments:String? = null
}

Kotlin GetDebriefReviewRequest DTOs

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

HTTP + CSV

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/csv
HTTP/1.1 200 OK
Content-Type: text/csv
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":{}}