| Requires any of the roles: | Agent, Administrator |
| GET,OPTIONS | /v1/project/{ProjectID}/timeline |
|---|
export class TimelineCrew
{
public ProjectJobCrewMemberID: number;
public ContactID: number;
public ContactName: string;
public BudgetedHours?: number;
public constructor(init?: Partial<TimelineCrew>) { (Object as any).assign(this, init); }
}
export class TimelineEquipment
{
public ProjectJobEquipmentID: number;
public EquipmentID: number;
public EquipmentName: string;
public constructor(init?: Partial<TimelineEquipment>) { (Object as any).assign(this, init); }
}
export class TimelineJob
{
public JobID: number;
public JobName: string;
public ExpectedStartDate?: string;
public ExpectedCompletionDate?: string;
public ActualStartDate?: string;
public ActualEndDate?: string;
public PercentComplete: number;
public StatusID?: number;
public JobCategory: string;
public IsAgreementVisit: boolean;
public OccurrenceDate?: string;
public Crew: TimelineCrew[] = [];
public Equipment: TimelineEquipment[] = [];
public constructor(init?: Partial<TimelineJob>) { (Object as any).assign(this, init); }
}
export class JobDependency
{
public JobDependencyID: number;
public TenantId: string;
public ProjectID: number;
public PredecessorJobID: number;
public SuccessorJobID: number;
public DependencyType: string;
public LagDays: number;
public CreatedBy: string;
public CreatedAt?: string;
public UpdatedAt?: string;
public constructor(init?: Partial<JobDependency>) { (Object as any).assign(this, init); }
}
export class ProjectTimeline
{
public ProjectID: number;
public Jobs: TimelineJob[] = [];
public Dependencies: JobDependency[] = [];
public constructor(init?: Partial<ProjectTimeline>) { (Object as any).assign(this, init); }
}
export class ProjectTimelineResponse
{
public ResponseStatus: ResponseStatus;
public Timeline: ProjectTimeline;
public constructor(init?: Partial<ProjectTimelineResponse>) { (Object as any).assign(this, init); }
}
export class ProjectTimelineRequest
{
public ProjectID: number;
public constructor(init?: Partial<ProjectTimelineRequest>) { (Object as any).assign(this, init); }
}
TypeScript ProjectTimelineRequest 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/project/{ProjectID}/timeline 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
}
},
Timeline:
{
ProjectID: 0,
Jobs:
[
{
JobID: 0,
JobName: String,
ExpectedStartDate: 0001-01-01,
ExpectedCompletionDate: 0001-01-01,
ActualStartDate: 0001-01-01,
ActualEndDate: 0001-01-01,
PercentComplete: 0,
StatusID: 0,
JobCategory: String,
IsAgreementVisit: False,
OccurrenceDate: 0001-01-01,
Crew:
[
{
ProjectJobCrewMemberID: 0,
ContactID: 0,
ContactName: String,
BudgetedHours: 0
}
],
Equipment:
[
{
ProjectJobEquipmentID: 0,
EquipmentID: 0,
EquipmentName: String
}
]
}
],
Dependencies:
[
{
JobDependencyID: 0,
TenantId: 00000000000000000000000000000000,
ProjectID: 0,
PredecessorJobID: 0,
SuccessorJobID: 0,
DependencyType: String,
LagDays: 0,
CreatedBy: String,
CreatedAt: 0001-01-01,
UpdatedAt: 0001-01-01
}
]
}
}