Hmx Accounts

<back to all web services

GetPurchaseOrders

The following routes are available for this service:
GET/api/purchaseordersSearch for PurchaseOrders
Imports System
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports Hmx.Accounts.ServiceModels
Imports Hmx.Accounts.Models

Namespace Global

    Namespace Hmx.Accounts.Models

        Public Partial Class PurchaseOrderItem
            Public Overridable Property Id As Integer
            <References(GetType(PurchaseOrder))>
            Public Overridable Property PurchaseOrderId As Integer

            <References(GetType(Product))>
            Public Overridable Property ProductId As String

            Public Overridable Property ProductName As String
            Public Overridable Property Quantity As Integer
            Public Overridable Property Price As Decimal
            Public Overridable Property DiscountDescription As String
            Public Overridable Property DiscountSource As String
            Public Overridable Property Discount As Decimal
            Public Overridable Property CreatedDate As Date
        End Class
    End Namespace

    Namespace Hmx.Accounts.ServiceModels

        Public Partial Class GetPurchaseOrders
            Public Overridable Property UserId As String
            Public Overridable Property FromDate As Nullable(Of Date)
            Public Overridable Property ToDate As Nullable(Of Date)
            Public Overridable Property Void As Nullable(Of Boolean)
            Public Overridable Property Paid As Nullable(Of Boolean)
            Public Overridable Property TransactionIdentifier As String
            Public Overridable Property CouponCode As String
        End Class

        Public Partial Class GetPurchaseOrdersResponse
            Public Sub New()
                Results = New List(Of PurchaseOrderDto)
            End Sub

            Public Overridable Property Results As List(Of PurchaseOrderDto)
        End Class

        Public Partial Class PurchaseOrderDto
            Public Sub New()
                OrderItems = New List(Of PurchaseOrderItem)
            End Sub

            Public Overridable Property Id As Integer
            Public Overridable Property UserId As String
            Public Overridable Property CreatedDate As Date
            Public Overridable Property PaymentType As String
            Public Overridable Property Void As Boolean
            Public Overridable Property Paid As Boolean
            Public Overridable Property TransactionIdentifier As String
            Public Overridable Property CouponCode As String
            Public Overridable Property OrderItems As List(Of PurchaseOrderItem)
            Public Overridable Property Payer As String
            Public Overridable Property BillingAddressLine1 As String
            Public Overridable Property BillingAddressCity As String
            Public Overridable Property BillingAddressState As String
            Public Overridable Property BillingAddressPostalCode As String
            Public Overridable Property BillingAddressCountryCode As String
        End Class
    End Namespace
End Namespace

VB.NET GetPurchaseOrders DTOs

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

To embed the response in a jsonp callback, append ?callback=myCallback

HTTP + JSON

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

GET /api/purchaseorders HTTP/1.1 
Host: accounts.dev.healthmonix.com 
Accept: application/json
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"results":[{"id":0,"userId":"String","createdDate":"0001-01-01T00:00:00.0000000","paymentType":"String","void":false,"paid":false,"transactionIdentifier":"String","couponCode":"String","orderItems":[{"id":0,"purchaseOrderId":0,"productId":"String","productName":"String","quantity":0,"price":0,"discountDescription":"String","discountSource":"String","discount":0,"createdDate":"0001-01-01T00:00:00.0000000"}],"payer":"String","billingAddressLine1":"String","billingAddressCity":"String","billingAddressState":"String","billingAddressPostalCode":"String","billingAddressCountryCode":"String"}]}