Trendsic Platform Service

<back to all web services

ProjectRequest

Requires Authentication
The following routes are available for this service:
GET,POST,PUT,DELETE,OPTIONS/v1/Project/{ProjectID}
GET,POST,PUT,DELETE,OPTIONS/v1/Project
GET,OPTIONS/v1/Project/GetSingle/{ProjectUID}
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;

public class dtos
{

    public static class ProjectRequest
    {
        public UUID ProjectUID = null;
        public Integer ProjectID = null;
        public ArrayList<Project> Project = new ArrayList<Project>();
        
        public UUID getProjectUID() { return ProjectUID; }
        public ProjectRequest setProjectUID(UUID value) { this.ProjectUID = value; return this; }
        public Integer getProjectID() { return ProjectID; }
        public ProjectRequest setProjectID(Integer value) { this.ProjectID = value; return this; }
        public ArrayList<Project> getProject() { return Project; }
        public ProjectRequest setProject(ArrayList<Project> value) { this.Project = value; return this; }
    }

    public static class Project
    {
        public Integer ProjectID = null;
        public UUID ProjectUID = null;
        public String ProjectName = null;
        public String ImageURL = null;
        public String ImageKey = null;
        public String ClientName = null;
        public String ClientPhone = null;
        public String ClientEmail = null;
        public Integer ProjectManagerID = null;
        public String ProjectManagerName = null;
        public Date StartDate = null;
        public Date EndDate = null;
        public Date ActualStartDate = null;
        public Date ActualEndDate = null;
        public Integer JobCount = null;
        public Integer CrewMemberCount = null;
        public Integer EquipmentCount = null;
        public Integer MaterialCount = null;
        public Short ProjectStatusID = null;
        public String ProjectStatusDescription = null;
        public BigDecimal Budget = null;
        public BigDecimal CostToDate = null;
        public String ProjectLocation = null;
        public String ProjectType = null;
        public String ProjectSponsor = null;
        public String CreatedBy = null;
        public Date CreatedAt = null;
        public Date UpdatedAt = null;
        public String ProjectDescription = null;
        public String Scope = null;
        public Integer StatusId = null;
        
        public Integer getProjectID() { return ProjectID; }
        public Project setProjectID(Integer value) { this.ProjectID = value; return this; }
        public UUID getProjectUID() { return ProjectUID; }
        public Project setProjectUID(UUID value) { this.ProjectUID = value; return this; }
        public String getProjectName() { return ProjectName; }
        public Project setProjectName(String value) { this.ProjectName = value; return this; }
        public String getImageURL() { return ImageURL; }
        public Project setImageURL(String value) { this.ImageURL = value; return this; }
        public String getImageKey() { return ImageKey; }
        public Project setImageKey(String value) { this.ImageKey = value; return this; }
        public String getClientName() { return ClientName; }
        public Project setClientName(String value) { this.ClientName = value; return this; }
        public String getClientPhone() { return ClientPhone; }
        public Project setClientPhone(String value) { this.ClientPhone = value; return this; }
        public String getClientEmail() { return ClientEmail; }
        public Project setClientEmail(String value) { this.ClientEmail = value; return this; }
        public Integer getProjectManagerID() { return ProjectManagerID; }
        public Project setProjectManagerID(Integer value) { this.ProjectManagerID = value; return this; }
        public String getProjectManagerName() { return ProjectManagerName; }
        public Project setProjectManagerName(String value) { this.ProjectManagerName = value; return this; }
        public Date getStartDate() { return StartDate; }
        public Project setStartDate(Date value) { this.StartDate = value; return this; }
        public Date getEndDate() { return EndDate; }
        public Project setEndDate(Date value) { this.EndDate = value; return this; }
        public Date getActualStartDate() { return ActualStartDate; }
        public Project setActualStartDate(Date value) { this.ActualStartDate = value; return this; }
        public Date getActualEndDate() { return ActualEndDate; }
        public Project setActualEndDate(Date value) { this.ActualEndDate = value; return this; }
        public Integer getJobCount() { return JobCount; }
        public Project setJobCount(Integer value) { this.JobCount = value; return this; }
        public Integer getCrewMemberCount() { return CrewMemberCount; }
        public Project setCrewMemberCount(Integer value) { this.CrewMemberCount = value; return this; }
        public Integer getEquipmentCount() { return EquipmentCount; }
        public Project setEquipmentCount(Integer value) { this.EquipmentCount = value; return this; }
        public Integer getMaterialCount() { return MaterialCount; }
        public Project setMaterialCount(Integer value) { this.MaterialCount = value; return this; }
        public Short getProjectStatusID() { return ProjectStatusID; }
        public Project setProjectStatusID(Short value) { this.ProjectStatusID = value; return this; }
        public String getProjectStatusDescription() { return ProjectStatusDescription; }
        public Project setProjectStatusDescription(String value) { this.ProjectStatusDescription = value; return this; }
        public BigDecimal getBudget() { return Budget; }
        public Project setBudget(BigDecimal value) { this.Budget = value; return this; }
        public BigDecimal getCostToDate() { return CostToDate; }
        public Project setCostToDate(BigDecimal value) { this.CostToDate = value; return this; }
        public String getProjectLocation() { return ProjectLocation; }
        public Project setProjectLocation(String value) { this.ProjectLocation = value; return this; }
        public String getProjectType() { return ProjectType; }
        public Project setProjectType(String value) { this.ProjectType = value; return this; }
        public String getProjectSponsor() { return ProjectSponsor; }
        public Project setProjectSponsor(String value) { this.ProjectSponsor = value; return this; }
        public String getCreatedBy() { return CreatedBy; }
        public Project setCreatedBy(String value) { this.CreatedBy = value; return this; }
        public Date getCreatedAt() { return CreatedAt; }
        public Project setCreatedAt(Date value) { this.CreatedAt = value; return this; }
        public Date getUpdatedAt() { return UpdatedAt; }
        public Project setUpdatedAt(Date value) { this.UpdatedAt = value; return this; }
        public String getProjectDescription() { return ProjectDescription; }
        public Project setProjectDescription(String value) { this.ProjectDescription = value; return this; }
        public String getScope() { return Scope; }
        public Project setScope(String value) { this.Scope = value; return this; }
        public Integer getStatusId() { return StatusId; }
        public Project setStatusId(Integer value) { this.StatusId = value; return this; }
    }

    public static class ProjectResponse
    {
        public ResponseStatus ResponseStatus = null;
        public ArrayList<Project> Project = new ArrayList<Project>();
        
        public ResponseStatus getResponseStatus() { return ResponseStatus; }
        public ProjectResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; }
        public ArrayList<Project> getProject() { return Project; }
        public ProjectResponse setProject(ArrayList<Project> value) { this.Project = value; return this; }
    }

}

Java ProjectRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /v1/Project/{ProjectID} HTTP/1.1 
Host: api.dev.dynamics.trendsic.com 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<ProjectRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRM.AgencyPlatform.API.Internal">
  <Project>
    <Project>
      <ActualEndDate>0001-01-01T00:00:00</ActualEndDate>
      <ActualStartDate>0001-01-01T00:00:00</ActualStartDate>
      <Budget>0</Budget>
      <ClientEmail>String</ClientEmail>
      <ClientName>String</ClientName>
      <ClientPhone>String</ClientPhone>
      <CostToDate>0</CostToDate>
      <CreatedAt>0001-01-01T00:00:00</CreatedAt>
      <CreatedBy>String</CreatedBy>
      <CrewMemberCount>0</CrewMemberCount>
      <EndDate>0001-01-01T00:00:00</EndDate>
      <EquipmentCount>0</EquipmentCount>
      <ImageKey>String</ImageKey>
      <ImageURL>String</ImageURL>
      <JobCount>0</JobCount>
      <MaterialCount>0</MaterialCount>
      <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>
  </Project>
  <ProjectID>0</ProjectID>
  <ProjectUID>00000000-0000-0000-0000-000000000000</ProjectUID>
</ProjectRequest>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<ProjectResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRM.AgencyPlatform.API.Internal">
  <Project>
    <Project>
      <ActualEndDate>0001-01-01T00:00:00</ActualEndDate>
      <ActualStartDate>0001-01-01T00:00:00</ActualStartDate>
      <Budget>0</Budget>
      <ClientEmail>String</ClientEmail>
      <ClientName>String</ClientName>
      <ClientPhone>String</ClientPhone>
      <CostToDate>0</CostToDate>
      <CreatedAt>0001-01-01T00:00:00</CreatedAt>
      <CreatedBy>String</CreatedBy>
      <CrewMemberCount>0</CrewMemberCount>
      <EndDate>0001-01-01T00:00:00</EndDate>
      <EquipmentCount>0</EquipmentCount>
      <ImageKey>String</ImageKey>
      <ImageURL>String</ImageURL>
      <JobCount>0</JobCount>
      <MaterialCount>0</MaterialCount>
      <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>
  </Project>
  <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>
</ProjectResponse>