| GET,OPTIONS | /v1/pursuits/pipeline |
|---|
Imports System
Imports System.IO
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports CRM.AgencyPlatform.API.Internal
Namespace Global
Namespace CRM.AgencyPlatform.API.Internal
Public Partial Class Pursuit
Public Overridable Property PursuitID As Integer
Public Overridable Property PursuitUID As Guid
Public Overridable Property PursuitNumber As String
Public Overridable Property Name As String
Public Overridable Property ClientOwner As String
Public Overridable Property WorkType As String
Public Overridable Property Solicitation As String
Public Overridable Property Location As String
Public Overridable Property Scope As String
Public Overridable Property Stage As String
Public Overridable Property Outcome As String
Public Overridable Property BidValue As Decimal
Public Overridable Property EstCost As Decimal
Public Overridable Property WinProbability As Decimal
Public Overridable Property CostOfPursuit As Decimal
Public Overridable Property DueDate As Date?
Public Overridable Property EstimatorRfpRef As String
Public Overridable Property AwardedProjectID As Integer?
Public Overridable Property OpenedAt As Date?
Public Overridable Property SubmittedAt As Date?
Public Overridable Property DecidedAt As Date?
Public Overridable Property CreatedBy As String
Public Overridable Property CreatedAt As Date?
Public Overridable Property UpdatedAt As Date?
Public Overridable Property DaysOpen As Integer
Public Overridable Property WeightedValue As Decimal
Public Overridable Property Activity As List(Of PursuitActivity) = New List(Of PursuitActivity)
End Class
Public Partial Class PursuitActivity
Public Overridable Property PursuitActivityID As Integer
Public Overridable Property PursuitID As Integer
Public Overridable Property Kind As String
Public Overridable Property Label As String
Public Overridable Property Detail As String
Public Overridable Property Actor As String
Public Overridable Property CreatedAt As Date?
End Class
Public Partial Class PursuitListResponse
Public Overridable Property ResponseStatus As ResponseStatus
Public Overridable Property Pursuits As List(Of Pursuit) = New List(Of Pursuit)
Public Overridable Property Summary As PursuitPipelineSummary
End Class
Public Partial Class PursuitPipelineRequest
End Class
Public Partial Class PursuitPipelineSummary
Public Overridable Property ActivePursuits As Integer
Public Overridable Property PipelineValue As Decimal
Public Overridable Property WeightedValue As Decimal
Public Overridable Property WonCount As Integer
Public Overridable Property DecidedCount As Integer
Public Overridable Property WinRate As Decimal
Public Overridable Property ClosingThisWeek As Integer
End Class
End Namespace
End Namespace
VB.NET PursuitPipelineRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /v1/pursuits/pipeline HTTP/1.1 Host: api.dev.dynamics.trendsic.com Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
ResponseStatus:
{
ErrorCode: String,
Message: String,
StackTrace: String,
Errors:
[
{
ErrorCode: String,
FieldName: String,
Message: String,
Meta:
{
String: String
}
}
],
Meta:
{
String: String
}
},
Pursuits:
[
{
PursuitID: 0,
PursuitUID: 00000000000000000000000000000000,
PursuitNumber: String,
Name: String,
ClientOwner: String,
WorkType: String,
Solicitation: String,
Location: String,
Scope: String,
Stage: String,
Outcome: String,
BidValue: 0,
EstCost: 0,
WinProbability: 0,
CostOfPursuit: 0,
DueDate: 0001-01-01,
EstimatorRfpRef: String,
AwardedProjectID: 0,
OpenedAt: 0001-01-01,
SubmittedAt: 0001-01-01,
DecidedAt: 0001-01-01,
CreatedBy: String,
CreatedAt: 0001-01-01,
UpdatedAt: 0001-01-01,
DaysOpen: 0,
WeightedValue: 0,
Activity:
[
{
PursuitActivityID: 0,
PursuitID: 0,
Kind: String,
Label: String,
Detail: String,
Actor: String,
CreatedAt: 0001-01-01
}
]
}
],
Summary:
{
ActivePursuits: 0,
PipelineValue: 0,
WeightedValue: 0,
WonCount: 0,
DecidedCount: 0,
WinRate: 0,
ClosingThisWeek: 0
}
}