| GET,POST,PUT,DELETE,OPTIONS | /v1/ProjectEquipment | ||
|---|---|---|---|
| GET,POST,PUT,DELETE,OPTIONS | /v1/ProjectEquipment/{ProjectEquipmentID} |
"use strict";
export class Location {
/** @param {{Id?:string,ClientId?:string,Name?:string,Address1?:string,Address2?:string,City?:string,State?:string,Zip?:string,Phone?:string,Fax?:string,URL?:string,Email?:string,TimeZone?:string,Active?:boolean,EntDate?:string,ModDate?:string,LocationImage?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
Id;
/** @type {string} */
ClientId;
/** @type {string} */
Name;
/** @type {string} */
Address1;
/** @type {string} */
Address2;
/** @type {string} */
City;
/** @type {string} */
State;
/** @type {string} */
Zip;
/** @type {string} */
Phone;
/** @type {string} */
Fax;
/** @type {string} */
URL;
/** @type {string} */
Email;
/** @type {string} */
TimeZone;
/** @type {boolean} */
Active;
/** @type {string} */
EntDate;
/** @type {string} */
ModDate;
/** @type {string} */
LocationImage;
}
export class Project {
/** @param {{ProjectID?:number,ProjectUID?:string,ProjectName?:string,ImageURL?:string,ImageKey?:string,ClientName?:string,ClientPhone?:string,ClientEmail?:string,NotifyCustomerOnVisitCompletion?:boolean,ClientContactID?:number,ProjectManagerID?:number,ProjectManagerName?:string,StartDate?:string,EndDate?:string,ActualStartDate?:string,ActualEndDate?:string,JobCount?:number,CrewMemberCount?:number,CrewAvatarsJson?:string,CrewNamesSearch?:string,EquipmentCount?:number,MaterialCount?:number,ProjectStatusID?:number,ProjectStatusDescription?:string,Budget?:number,CostToDate?:number,ProjectLocation?:string,ProjectType?:string,ProjectSponsor?:string,CreatedBy?:string,CreatedAt?:string,UpdatedAt?:string,ProjectDescription?:string,Scope?:string,StatusId?:number,BranchId?:string,BranchName?:string,Location?:Location}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
ProjectID;
/** @type {string} */
ProjectUID;
/** @type {string} */
ProjectName;
/** @type {string} */
ImageURL;
/** @type {string} */
ImageKey;
/** @type {string} */
ClientName;
/** @type {string} */
ClientPhone;
/** @type {string} */
ClientEmail;
/** @type {boolean} */
NotifyCustomerOnVisitCompletion;
/** @type {?number} */
ClientContactID;
/** @type {number} */
ProjectManagerID;
/** @type {string} */
ProjectManagerName;
/** @type {?string} */
StartDate;
/** @type {?string} */
EndDate;
/** @type {?string} */
ActualStartDate;
/** @type {?string} */
ActualEndDate;
/** @type {number} */
JobCount;
/** @type {number} */
CrewMemberCount;
/** @type {string} */
CrewAvatarsJson;
/** @type {string} */
CrewNamesSearch;
/** @type {number} */
EquipmentCount;
/** @type {number} */
MaterialCount;
/** @type {number} */
ProjectStatusID;
/** @type {string} */
ProjectStatusDescription;
/** @type {number} */
Budget;
/** @type {number} */
CostToDate;
/** @type {string} */
ProjectLocation;
/** @type {string} */
ProjectType;
/** @type {string} */
ProjectSponsor;
/** @type {string} */
CreatedBy;
/** @type {?string} */
CreatedAt;
/** @type {?string} */
UpdatedAt;
/** @type {string} */
ProjectDescription;
/** @type {string} */
Scope;
/** @type {number} */
StatusId;
/** @type {string} */
BranchId;
/** @type {string} */
BranchName;
/** @type {Location} */
Location;
}
export class Equipment {
/** @param {{EquipmentID?:number,EquipmentName?:string,EquipmentTypeID?:number,Manufacturer?:string,EquipmentType?:string,SerialNumber?:string,BarCode?:string,EquipmentLocation?:string,ImageURL?:string,ProductDetailsURL?:string,RecordCreatedDate?:string,CreatedByUID?:string,Active?:boolean,Notes?:string,Rate?:number,BranchId?:string,BranchName?:string,Ownership?:string,RentalVendor?:string,RentalStart?:string,RentalEnd?:string,Projects?:Project[]}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
EquipmentID;
/** @type {string} */
EquipmentName;
/** @type {number} */
EquipmentTypeID;
/** @type {string} */
Manufacturer;
/** @type {string} */
EquipmentType;
/** @type {string} */
SerialNumber;
/** @type {string} */
BarCode;
/** @type {string} */
EquipmentLocation;
/** @type {string} */
ImageURL;
/** @type {string} */
ProductDetailsURL;
/** @type {string} */
RecordCreatedDate;
/** @type {string} */
CreatedByUID;
/** @type {boolean} */
Active;
/** @type {string} */
Notes;
/** @type {number} */
Rate;
/** @type {string} */
BranchId;
/** @type {string} */
BranchName;
/** @type {string} */
Ownership;
/** @type {string} */
RentalVendor;
/** @type {?string} */
RentalStart;
/** @type {?string} */
RentalEnd;
/** @type {Project[]} */
Projects = [];
}
export class ProjectEquipment extends Equipment {
/** @param {{ProjectEquipmentID?:number,ProjectID?:number,ProjectEndDate?:string,FirstJobUseDate?:string,LastJobUseDate?:string,EquipmentRate?:number,JobID?:number,BilledEquipmentRate?:number,Status?:string,Source?:string,OverlapBookings?:number,HasBookingConflict?:boolean,ConflictJobs?:string,EquipmentID?:number,EquipmentName?:string,EquipmentTypeID?:number,Manufacturer?:string,EquipmentType?:string,SerialNumber?:string,BarCode?:string,EquipmentLocation?:string,ImageURL?:string,ProductDetailsURL?:string,RecordCreatedDate?:string,CreatedByUID?:string,Active?:boolean,Notes?:string,Rate?:number,BranchId?:string,BranchName?:string,Ownership?:string,RentalVendor?:string,RentalStart?:string,RentalEnd?:string,Projects?:Project[]}} [init] */
constructor(init) { super(init); Object.assign(this, init) }
/** @type {number} */
ProjectEquipmentID;
/** @type {number} */
ProjectID;
/** @type {string} */
ProjectEndDate;
/** @type {string} */
FirstJobUseDate;
/** @type {string} */
LastJobUseDate;
/** @type {number} */
EquipmentRate;
/** @type {number} */
JobID;
/** @type {number} */
BilledEquipmentRate;
/** @type {string} */
Status;
/** @type {string} */
Source;
/** @type {number} */
OverlapBookings;
/** @type {boolean} */
HasBookingConflict;
/** @type {string} */
ConflictJobs;
}
export class ProjectEquipmentResponse {
/** @param {{ResponseStatus?:ResponseStatus,ProjectEquipment?:ProjectEquipment[]}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {ResponseStatus} */
ResponseStatus;
/** @type {ProjectEquipment[]} */
ProjectEquipment = [];
}
export class ProjectEquipmentRequest {
/** @param {{ProjectEquipmentID?:number,ProjectEquipment?:ProjectEquipment[]}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
ProjectEquipmentID;
/** @type {ProjectEquipment[]} */
ProjectEquipment = [];
}
JavaScript ProjectEquipmentRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /v1/ProjectEquipment HTTP/1.1
Host: api.dev.dynamics.trendsic.com
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<ProjectEquipmentRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRM.AgencyPlatform.API.Internal">
<ProjectEquipment>
<ProjectEquipment>
<Active>false</Active>
<BarCode>String</BarCode>
<BranchId>00000000-0000-0000-0000-000000000000</BranchId>
<BranchName>String</BranchName>
<CreatedByUID>00000000-0000-0000-0000-000000000000</CreatedByUID>
<EquipmentID>0</EquipmentID>
<EquipmentLocation>String</EquipmentLocation>
<EquipmentName>String</EquipmentName>
<EquipmentType>String</EquipmentType>
<EquipmentTypeID>0</EquipmentTypeID>
<ImageURL>String</ImageURL>
<Manufacturer>String</Manufacturer>
<Notes>String</Notes>
<Ownership>String</Ownership>
<ProductDetailsURL>String</ProductDetailsURL>
<Projects>
<Project>
<ActualEndDate>0001-01-01T00:00:00</ActualEndDate>
<ActualStartDate>0001-01-01T00:00:00</ActualStartDate>
<BranchId>00000000-0000-0000-0000-000000000000</BranchId>
<BranchName>String</BranchName>
<Budget>0</Budget>
<ClientContactID>0</ClientContactID>
<ClientEmail>String</ClientEmail>
<ClientName>String</ClientName>
<ClientPhone>String</ClientPhone>
<CostToDate>0</CostToDate>
<CreatedAt>0001-01-01T00:00:00</CreatedAt>
<CreatedBy>String</CreatedBy>
<CrewAvatarsJson>String</CrewAvatarsJson>
<CrewMemberCount>0</CrewMemberCount>
<CrewNamesSearch>String</CrewNamesSearch>
<EndDate>0001-01-01T00:00:00</EndDate>
<EquipmentCount>0</EquipmentCount>
<ImageKey>String</ImageKey>
<ImageURL>String</ImageURL>
<JobCount>0</JobCount>
<Location>
<Active>false</Active>
<Address1>String</Address1>
<Address2>String</Address2>
<City>String</City>
<ClientId>00000000-0000-0000-0000-000000000000</ClientId>
<Email>String</Email>
<EntDate>0001-01-01T00:00:00</EntDate>
<Fax>String</Fax>
<Id>00000000-0000-0000-0000-000000000000</Id>
<LocationImage>String</LocationImage>
<ModDate>0001-01-01T00:00:00</ModDate>
<Name>String</Name>
<Phone>String</Phone>
<State>String</State>
<TimeZone>String</TimeZone>
<URL>String</URL>
<Zip>String</Zip>
</Location>
<MaterialCount>0</MaterialCount>
<NotifyCustomerOnVisitCompletion>false</NotifyCustomerOnVisitCompletion>
<ProjectDescription>String</ProjectDescription>
<ProjectID>0</ProjectID>
<ProjectLocation>String</ProjectLocation>
<ProjectManagerID>0</ProjectManagerID>
<ProjectManagerName>String</ProjectManagerName>
<ProjectName>String</ProjectName>
<ProjectSponsor>String</ProjectSponsor>
<ProjectStatusDescription>String</ProjectStatusDescription>
<ProjectStatusID>0</ProjectStatusID>
<ProjectType>String</ProjectType>
<ProjectUID>00000000-0000-0000-0000-000000000000</ProjectUID>
<Scope>String</Scope>
<StartDate>0001-01-01T00:00:00</StartDate>
<StatusId>0</StatusId>
<UpdatedAt>0001-01-01T00:00:00</UpdatedAt>
</Project>
</Projects>
<Rate>0</Rate>
<RecordCreatedDate>0001-01-01T00:00:00</RecordCreatedDate>
<RentalEnd>0001-01-01T00:00:00</RentalEnd>
<RentalStart>0001-01-01T00:00:00</RentalStart>
<RentalVendor>String</RentalVendor>
<SerialNumber>String</SerialNumber>
<BilledEquipmentRate>0</BilledEquipmentRate>
<ConflictJobs>String</ConflictJobs>
<EquipmentRate>0</EquipmentRate>
<FirstJobUseDate>0001-01-01T00:00:00</FirstJobUseDate>
<JobID>0</JobID>
<LastJobUseDate>0001-01-01T00:00:00</LastJobUseDate>
<OverlapBookings>0</OverlapBookings>
<ProjectEndDate>0001-01-01T00:00:00</ProjectEndDate>
<ProjectEquipmentID>0</ProjectEquipmentID>
<ProjectID>0</ProjectID>
<Source>String</Source>
<Status>String</Status>
</ProjectEquipment>
</ProjectEquipment>
<ProjectEquipmentID>0</ProjectEquipmentID>
</ProjectEquipmentRequest>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<ProjectEquipmentResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRM.AgencyPlatform.API.Internal">
<ProjectEquipment>
<ProjectEquipment>
<Active>false</Active>
<BarCode>String</BarCode>
<BranchId>00000000-0000-0000-0000-000000000000</BranchId>
<BranchName>String</BranchName>
<CreatedByUID>00000000-0000-0000-0000-000000000000</CreatedByUID>
<EquipmentID>0</EquipmentID>
<EquipmentLocation>String</EquipmentLocation>
<EquipmentName>String</EquipmentName>
<EquipmentType>String</EquipmentType>
<EquipmentTypeID>0</EquipmentTypeID>
<ImageURL>String</ImageURL>
<Manufacturer>String</Manufacturer>
<Notes>String</Notes>
<Ownership>String</Ownership>
<ProductDetailsURL>String</ProductDetailsURL>
<Projects>
<Project>
<ActualEndDate>0001-01-01T00:00:00</ActualEndDate>
<ActualStartDate>0001-01-01T00:00:00</ActualStartDate>
<BranchId>00000000-0000-0000-0000-000000000000</BranchId>
<BranchName>String</BranchName>
<Budget>0</Budget>
<ClientContactID>0</ClientContactID>
<ClientEmail>String</ClientEmail>
<ClientName>String</ClientName>
<ClientPhone>String</ClientPhone>
<CostToDate>0</CostToDate>
<CreatedAt>0001-01-01T00:00:00</CreatedAt>
<CreatedBy>String</CreatedBy>
<CrewAvatarsJson>String</CrewAvatarsJson>
<CrewMemberCount>0</CrewMemberCount>
<CrewNamesSearch>String</CrewNamesSearch>
<EndDate>0001-01-01T00:00:00</EndDate>
<EquipmentCount>0</EquipmentCount>
<ImageKey>String</ImageKey>
<ImageURL>String</ImageURL>
<JobCount>0</JobCount>
<Location>
<Active>false</Active>
<Address1>String</Address1>
<Address2>String</Address2>
<City>String</City>
<ClientId>00000000-0000-0000-0000-000000000000</ClientId>
<Email>String</Email>
<EntDate>0001-01-01T00:00:00</EntDate>
<Fax>String</Fax>
<Id>00000000-0000-0000-0000-000000000000</Id>
<LocationImage>String</LocationImage>
<ModDate>0001-01-01T00:00:00</ModDate>
<Name>String</Name>
<Phone>String</Phone>
<State>String</State>
<TimeZone>String</TimeZone>
<URL>String</URL>
<Zip>String</Zip>
</Location>
<MaterialCount>0</MaterialCount>
<NotifyCustomerOnVisitCompletion>false</NotifyCustomerOnVisitCompletion>
<ProjectDescription>String</ProjectDescription>
<ProjectID>0</ProjectID>
<ProjectLocation>String</ProjectLocation>
<ProjectManagerID>0</ProjectManagerID>
<ProjectManagerName>String</ProjectManagerName>
<ProjectName>String</ProjectName>
<ProjectSponsor>String</ProjectSponsor>
<ProjectStatusDescription>String</ProjectStatusDescription>
<ProjectStatusID>0</ProjectStatusID>
<ProjectType>String</ProjectType>
<ProjectUID>00000000-0000-0000-0000-000000000000</ProjectUID>
<Scope>String</Scope>
<StartDate>0001-01-01T00:00:00</StartDate>
<StatusId>0</StatusId>
<UpdatedAt>0001-01-01T00:00:00</UpdatedAt>
</Project>
</Projects>
<Rate>0</Rate>
<RecordCreatedDate>0001-01-01T00:00:00</RecordCreatedDate>
<RentalEnd>0001-01-01T00:00:00</RentalEnd>
<RentalStart>0001-01-01T00:00:00</RentalStart>
<RentalVendor>String</RentalVendor>
<SerialNumber>String</SerialNumber>
<BilledEquipmentRate>0</BilledEquipmentRate>
<ConflictJobs>String</ConflictJobs>
<EquipmentRate>0</EquipmentRate>
<FirstJobUseDate>0001-01-01T00:00:00</FirstJobUseDate>
<JobID>0</JobID>
<LastJobUseDate>0001-01-01T00:00:00</LastJobUseDate>
<OverlapBookings>0</OverlapBookings>
<ProjectEndDate>0001-01-01T00:00:00</ProjectEndDate>
<ProjectEquipmentID>0</ProjectEquipmentID>
<ProjectID>0</ProjectID>
<Source>String</Source>
<Status>String</Status>
</ProjectEquipment>
</ProjectEquipment>
<ResponseStatus xmlns:d2p1="http://schemas.servicestack.net/types">
<d2p1:ErrorCode>String</d2p1:ErrorCode>
<d2p1:Message>String</d2p1:Message>
<d2p1:StackTrace>String</d2p1:StackTrace>
<d2p1:Errors>
<d2p1:ResponseError>
<d2p1:ErrorCode>String</d2p1:ErrorCode>
<d2p1:FieldName>String</d2p1:FieldName>
<d2p1:Message>String</d2p1:Message>
<d2p1:Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d5p1:KeyValueOfstringstring>
<d5p1:Key>String</d5p1:Key>
<d5p1:Value>String</d5p1:Value>
</d5p1:KeyValueOfstringstring>
</d2p1:Meta>
</d2p1:ResponseError>
</d2p1:Errors>
<d2p1:Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:KeyValueOfstringstring>
<d3p1:Key>String</d3p1:Key>
<d3p1:Value>String</d3p1:Value>
</d3p1:KeyValueOfstringstring>
</d2p1:Meta>
</ResponseStatus>
</ProjectEquipmentResponse>