| GET,OPTIONS | /v1/qbo/pending |
|---|
namespace CRM.AgencyPlatform.API.Internal
open System
open System.IO
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations
[<AllowNullLiteral>]
type QboPendingInvoice() =
member val InvoiceID:Int32 = new Int32() with get,set
member val InvoiceUID:Guid = new Guid() with get,set
member val InvoiceNumber:String = null with get,set
member val InvoiceDate:Nullable<DateTime> = new Nullable<DateTime>() with get,set
member val Total:Nullable<Decimal> = new Nullable<Decimal>() with get,set
member val CustomerName:String = null with get,set
member val IsPaid:Boolean = new Boolean() with get,set
member val SyncStatus:String = null with get,set
member val ExternalRef:String = null with get,set
[<AllowNullLiteral>]
type QboPendingResponse() =
member val Invoices:ResizeArray<QboPendingInvoice> = new ResizeArray<QboPendingInvoice>() with get,set
member val ResponseStatus:ResponseStatus = null with get,set
[<AllowNullLiteral>]
type QboPendingRequest() =
class end
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /v1/qbo/pending HTTP/1.1 Host: api.dev.dynamics.trendsic.com Accept: text/jsonl
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length
{"Invoices":[{"InvoiceID":0,"InvoiceUID":"00000000000000000000000000000000","InvoiceNumber":"String","InvoiceDate":"0001-01-01T00:00:00.0000000","Total":0,"CustomerName":"String","IsPaid":false,"SyncStatus":"String","ExternalRef":"String"}],"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}}}