Recost Adjustments
The Recost Adjustments resource allows recost adjustments to be listed.
The full range of URIs and HTTP Verbs supported are:
Operation
HTTP Action
List a page of Recost Adjustments
GET /RecostAdjustments
GET Recost Adjustments
Available Filters for GET Recost Adjustments
Filter
Description
completedBefore
Returns Recost Adjustments completed before the specified date.
completedAfter
Returns Recost Adjustments completed after the specified date.
pageSize
Specifies the page size for pagination. Default page size is 200 recost adjustments.
Note: Requesting large numbers of recost adjustments can be susceptible to poor network performance. Please reduce the page size if you experience delayed requests.
Note: Date filters should be provided in the ISO format YYYY-MM-DD. The time zone is UTC.
Filters are used by adding the filter and value to the URI:
/RecostAdjustments?pageSize=10
Available Fields for GET Recost Adjustments
Property
Type
Length
CompletedDate
Nullable DateTime
Currency
String
3
EntryDate
Nullable DateTime
PurchaseOrderGuid
Guid
PurchaseOrderNumber
String
20
SupplierCode
String
500
TaxCode
String
50
Total
Decimal
Examples for Response GET /RecostAdjustments
show xml example
<?xml version="1.0"?>
<RecostAdjustments xmlns:xsd= "http://www.w3.org/2001/XMLSchema" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xmlns= "http://api.unleashedsoftware.com/version/1" >
<Pagination>
<NumberOfItems> 2</NumberOfItems>
<PageSize> 200</PageSize>
<PageNumber> 1</PageNumber>
<NumberOfPages> 1</NumberOfPages>
</Pagination>
<RecostAdjustment>
<PurchaseOrderGuid> db26dcf4-dd08-433a-87c1-2162f020625d</PurchaseOrderGuid>
<PurchaseOrderNumber> PO-00000139</PurchaseOrderNumber>
<SupplierCode> DEPOT</SupplierCode>
<TaxCode> G.S.T.</TaxCode>
<Currency> AUD</Currency>
<CompletedDate> 2022-10-03T21:22:39.5453909</CompletedDate>
<Total> -4.367</Total>
</RecostAdjustment>
<RecostAdjustment>
<PurchaseOrderGuid> 42496bff-b952-4408-9ebc-189fbe147782</PurchaseOrderGuid>
<PurchaseOrderNumber> PO-00000141</PurchaseOrderNumber>
<SupplierCode> PPP01</SupplierCode>
<TaxCode> G.S.T.</TaxCode>
<Currency> NZD</Currency>
<CompletedDate> 2022-10-03T19:28:00.1080051</CompletedDate>
<Total> -210.703</Total>
</RecostAdjustment>
</RecostAdjustments>
show json example
{
"Pagination" : {
"NumberOfItems" : 2 ,
"PageSize" : 200 ,
"PageNumber" : 1 ,
"NumberOfPages" : 1
},
"Items" : [
{
"PurchaseOrderGuid" : "db26dcf4-dd08-433a-87c1-2162f020625d" ,
"PurchaseOrderNumber" : "PO-00000139" ,
"SupplierCode" : "DEPOT" ,
"TaxCode" : "G.S.T." ,
"Currency" : "AUD" ,
"CompletedDate" : "/Date(1664832159545)/" ,
"Total" : -4.367
},
{
"PurchaseOrderGuid" : "42496bff-b952-4408-9ebc-189fbe147782" ,
"PurchaseOrderNumber" : "PO-00000141" ,
"SupplierCode" : "PPP01" ,
"TaxCode" : "G.S.T." ,
"Currency" : "NZD" ,
"CompletedDate" : "/Date(1664825280108)/" ,
"Total" : -210.703
}
]
}
Use the API Sandbox to see how the object is rendered in JSON or XML.
Note: An Unleashed account is required before you can use the API Sandbox.
Trial accounts are also allowed to connect to the API.
You can register a new account here: Register .