Trendsic Platform Service

<back to all web services

GetInvoicesByProjectRequest

Requires Authentication
Requires any of the roles:Worker, Agent, Administrator
The following routes are available for this service:
GET,OPTIONS/v1/invoice/project/{ProjectUID}
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;

public class dtos
{

    public static class GetInvoicesByProjectRequest
    {
        public UUID ProjectUID = null;
        
        public UUID getProjectUID() { return ProjectUID; }
        public GetInvoicesByProjectRequest setProjectUID(UUID value) { this.ProjectUID = value; return this; }
    }

    public static class GetInvoicesByProjectResponse
    {
        public ResponseStatus ResponseStatus = null;
        public ArrayList<Invoice> Invoices = new ArrayList<Invoice>();
        public ProjectInvoiceData ProjectInvoiceData = null;
        
        public ResponseStatus getResponseStatus() { return ResponseStatus; }
        public GetInvoicesByProjectResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; }
        public ArrayList<Invoice> getInvoices() { return Invoices; }
        public GetInvoicesByProjectResponse setInvoices(ArrayList<Invoice> value) { this.Invoices = value; return this; }
        public ProjectInvoiceData getProjectInvoiceData() { return ProjectInvoiceData; }
        public GetInvoicesByProjectResponse setProjectInvoiceData(ProjectInvoiceData value) { this.ProjectInvoiceData = value; return this; }
    }

    public static class Invoice
    {
        public Integer InvoiceID = null;
        public UUID InvoiceUID = null;
        public UUID ProjectUID = null;
        public String InvoiceNumber = null;
        public Date InvoiceDate = null;
        public Date DueDate = null;
        public String FromName = null;
        public String FromPhone = null;
        public String FromEmail = null;
        public String FromAddress = null;
        public String FromDesc = null;
        public String ToName = null;
        public String ToPhone = null;
        public String ToEmail = null;
        public String ToAddress = null;
        public String ToDesc = null;
        public String Notes = null;
        public String Currency = null;
        public Integer Status = null;
        public BigDecimal Total = null;
        public Boolean IsPaid = null;
        public Date PaidDate = null;
        public Boolean IsDeleted = null;
        public Boolean IsLocked = null;
        public Date CreatedDate = null;
        public Date ModifiedDate = null;
        public UUID CreatedByUID = null;
        
        public Integer getInvoiceID() { return InvoiceID; }
        public Invoice setInvoiceID(Integer value) { this.InvoiceID = value; return this; }
        public UUID getInvoiceUID() { return InvoiceUID; }
        public Invoice setInvoiceUID(UUID value) { this.InvoiceUID = value; return this; }
        public UUID getProjectUID() { return ProjectUID; }
        public Invoice setProjectUID(UUID value) { this.ProjectUID = value; return this; }
        public String getInvoiceNumber() { return InvoiceNumber; }
        public Invoice setInvoiceNumber(String value) { this.InvoiceNumber = value; return this; }
        public Date getInvoiceDate() { return InvoiceDate; }
        public Invoice setInvoiceDate(Date value) { this.InvoiceDate = value; return this; }
        public Date getDueDate() { return DueDate; }
        public Invoice setDueDate(Date value) { this.DueDate = value; return this; }
        public String getFromName() { return FromName; }
        public Invoice setFromName(String value) { this.FromName = value; return this; }
        public String getFromPhone() { return FromPhone; }
        public Invoice setFromPhone(String value) { this.FromPhone = value; return this; }
        public String getFromEmail() { return FromEmail; }
        public Invoice setFromEmail(String value) { this.FromEmail = value; return this; }
        public String getFromAddress() { return FromAddress; }
        public Invoice setFromAddress(String value) { this.FromAddress = value; return this; }
        public String getFromDesc() { return FromDesc; }
        public Invoice setFromDesc(String value) { this.FromDesc = value; return this; }
        public String getToName() { return ToName; }
        public Invoice setToName(String value) { this.ToName = value; return this; }
        public String getToPhone() { return ToPhone; }
        public Invoice setToPhone(String value) { this.ToPhone = value; return this; }
        public String getToEmail() { return ToEmail; }
        public Invoice setToEmail(String value) { this.ToEmail = value; return this; }
        public String getToAddress() { return ToAddress; }
        public Invoice setToAddress(String value) { this.ToAddress = value; return this; }
        public String getToDesc() { return ToDesc; }
        public Invoice setToDesc(String value) { this.ToDesc = value; return this; }
        public String getNotes() { return Notes; }
        public Invoice setNotes(String value) { this.Notes = value; return this; }
        public String getCurrency() { return Currency; }
        public Invoice setCurrency(String value) { this.Currency = value; return this; }
        public Integer getStatus() { return Status; }
        public Invoice setStatus(Integer value) { this.Status = value; return this; }
        public BigDecimal getTotal() { return Total; }
        public Invoice setTotal(BigDecimal value) { this.Total = value; return this; }
        public Boolean getIsPaid() { return IsPaid; }
        public Invoice setIsPaid(Boolean value) { this.IsPaid = value; return this; }
        public Date getPaidDate() { return PaidDate; }
        public Invoice setPaidDate(Date value) { this.PaidDate = value; return this; }
        public Boolean getIsDeleted() { return IsDeleted; }
        public Invoice setIsDeleted(Boolean value) { this.IsDeleted = value; return this; }
        public Boolean getIsLocked() { return IsLocked; }
        public Invoice setIsLocked(Boolean value) { this.IsLocked = value; return this; }
        public Date getCreatedDate() { return CreatedDate; }
        public Invoice setCreatedDate(Date value) { this.CreatedDate = value; return this; }
        public Date getModifiedDate() { return ModifiedDate; }
        public Invoice setModifiedDate(Date value) { this.ModifiedDate = value; return this; }
        public UUID getCreatedByUID() { return CreatedByUID; }
        public Invoice setCreatedByUID(UUID value) { this.CreatedByUID = value; return this; }
    }

    public static class ProjectInvoiceData
    {
        public BigDecimal InvoicedAmount = null;
        public BigDecimal PaidAmount = null;
        
        public BigDecimal getInvoicedAmount() { return InvoicedAmount; }
        public ProjectInvoiceData setInvoicedAmount(BigDecimal value) { this.InvoicedAmount = value; return this; }
        public BigDecimal getPaidAmount() { return PaidAmount; }
        public ProjectInvoiceData setPaidAmount(BigDecimal value) { this.PaidAmount = value; return this; }
    }

}

Java GetInvoicesByProjectRequest 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.

GET /v1/invoice/project/{ProjectUID} HTTP/1.1 
Host: api.dev.dynamics.trendsic.com 
Accept: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<GetInvoicesByProjectResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRM.AgencyPlatform.API.Internal">
  <Invoices>
    <Invoice>
      <CreatedByUID>00000000-0000-0000-0000-000000000000</CreatedByUID>
      <CreatedDate>0001-01-01T00:00:00</CreatedDate>
      <Currency>String</Currency>
      <DueDate>0001-01-01T00:00:00</DueDate>
      <FromAddress>String</FromAddress>
      <FromDesc>String</FromDesc>
      <FromEmail>String</FromEmail>
      <FromName>String</FromName>
      <FromPhone>String</FromPhone>
      <InvoiceDate>0001-01-01T00:00:00</InvoiceDate>
      <InvoiceID>0</InvoiceID>
      <InvoiceNumber>String</InvoiceNumber>
      <InvoiceUID>00000000-0000-0000-0000-000000000000</InvoiceUID>
      <IsDeleted>false</IsDeleted>
      <IsLocked>false</IsLocked>
      <IsPaid>false</IsPaid>
      <ModifiedDate>0001-01-01T00:00:00</ModifiedDate>
      <Notes>String</Notes>
      <PaidDate>0001-01-01T00:00:00</PaidDate>
      <ProjectUID>00000000-0000-0000-0000-000000000000</ProjectUID>
      <Status>0</Status>
      <ToAddress>String</ToAddress>
      <ToDesc>String</ToDesc>
      <ToEmail>String</ToEmail>
      <ToName>String</ToName>
      <ToPhone>String</ToPhone>
      <Total>0</Total>
    </Invoice>
  </Invoices>
  <ProjectInvoiceData>
    <InvoicedAmount>0</InvoicedAmount>
    <PaidAmount>0</PaidAmount>
  </ProjectInvoiceData>
  <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>
</GetInvoicesByProjectResponse>