| Requires any of the roles: | Agent, Administrator |
| PUT,OPTIONS | /v1/project/job/{JobID}/schedule |
|---|
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 JobScheduleUpdateResponse
{
public ResponseStatus: ResponseStatus;
public Job: TimelineJob;
public constructor(init?: Partial<JobScheduleUpdateResponse>) { (Object as any).assign(this, init); }
}
export class JobScheduleUpdateRequest
{
public JobID: number;
public ExpectedStartDate?: string;
public ExpectedCompletionDate?: string;
public PercentComplete?: number;
public constructor(init?: Partial<JobScheduleUpdateRequest>) { (Object as any).assign(this, init); }
}
TypeScript JobScheduleUpdateRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
PUT /v1/project/job/{JobID}/schedule HTTP/1.1
Host: api.dev.dynamics.trendsic.com
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"JobID":0,"ExpectedStartDate":"0001-01-01T00:00:00.0000000","ExpectedCompletionDate":"0001-01-01T00:00:00.0000000","PercentComplete":0}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length
{"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}},"Job":{"JobID":0,"JobName":"String","ExpectedStartDate":"0001-01-01T00:00:00.0000000","ExpectedCompletionDate":"0001-01-01T00:00:00.0000000","ActualStartDate":"0001-01-01T00:00:00.0000000","ActualEndDate":"0001-01-01T00:00:00.0000000","PercentComplete":0,"StatusID":0,"JobCategory":"String","IsAgreementVisit":false,"OccurrenceDate":"0001-01-01T00:00:00.0000000","Crew":[{"ProjectJobCrewMemberID":0,"ContactID":0,"ContactName":"String","BudgetedHours":0}],"Equipment":[{"ProjectJobEquipmentID":0,"EquipmentID":0,"EquipmentName":"String"}]}}