| Requires any of the roles: | Agent, Administrator |
| GET,OPTIONS | /v1/invoice/generate/{ProjectUID}/{InvoiceStartDate}/{InvoiceEndDate} |
|---|
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using CRM.AgencyPlatform.API.Internal;
namespace CRM.AgencyPlatform.API.Internal
{
public partial class InvoiceGenerateRequest
{
public virtual Guid ProjectUID { get; set; }
public virtual DateTime InvoiceStartDate { get; set; }
public virtual DateTime InvoiceEndDate { get; set; }
}
public partial class InvoiceGenerateResponse
{
public virtual ResponseStatus ResponseStatus { get; set; }
public virtual List<InvoiceLineItem> ProjectInvoice { get; set; } = [];
}
public partial class InvoiceLineItem
{
public virtual int InvoiceLineItemID { get; set; }
public virtual int InvoiceID { get; set; }
public virtual string Type { get; set; }
public virtual string Name { get; set; }
public virtual int? Quantity { get; set; }
public virtual decimal? PercentageAdjust { get; set; }
public virtual decimal? AmountAdjust { get; set; }
public virtual decimal? Price { get; set; }
public virtual string Description { get; set; }
public virtual string Notes { get; set; }
public virtual bool? IsTaxable { get; set; }
public virtual int? DisplayOrder { get; set; }
public virtual bool? IsLocked { get; set; }
public virtual bool? IsDeleted { get; set; }
public virtual bool? IsPaid { get; set; }
public virtual DateTime? CreatedDate { get; set; }
public virtual DateTime? ModifiedDate { get; set; }
public virtual Guid? CreatedByUID { get; set; }
}
}
C# InvoiceGenerateRequest 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.
GET /v1/invoice/generate/{ProjectUID}/{InvoiceStartDate}/{InvoiceEndDate} HTTP/1.1
Host: api.dev.dynamics.trendsic.com
Accept: text/jsv
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
}
},
ProjectInvoice:
[
{
InvoiceLineItemID: 0,
InvoiceID: 0,
Type: String,
Name: String,
Quantity: 0,
PercentageAdjust: 0,
AmountAdjust: 0,
Price: 0,
Description: String,
Notes: String,
IsTaxable: False,
DisplayOrder: 0,
IsLocked: False,
IsDeleted: False,
IsPaid: False,
CreatedDate: 0001-01-01,
ModifiedDate: 0001-01-01,
CreatedByUID: 00000000000000000000000000000000
}
]
}