| 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 .jsv suffix or ?format=jsv
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/jsv
Content-Type: text/jsv
Content-Length: length
{
JobID: 0,
ExpectedStartDate: 0001-01-01,
ExpectedCompletionDate: 0001-01-01,
PercentComplete: 0
}
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
}
},
Job:
{
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
}
]
}
}