Assemblies
The Assemblies resource allows assemblies to be listed, viewed, created, updated and deleted. An individual assembly’s details can be viewed, updated or deleted by appending its identifier (a GUID formatted as XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
) to the URI.
The full range of URIs and HTTP Verbs supported are:
Operation
HTTP Action
List a page of Assemblies.
GET /Assemblies
View an assembly with the specified Guid.
GET /Assemblies/{AssemblyGuid}
Create a new Assembly with new lines.
POST /Assemblies
Create Assembly Lines against an existing Assembly.
POST /Assemblies/{AssemblyGuid}/Lines
Complete an existing Assembly.
POST /Assemblies/{AssemblyGuid}/Complete
Update an existing Assembly and existing lines.
PUT /Assemblies/{AssemblyGuid}
Update an Assembly Line from an existing Assembly.
PUT /Assemblies/{AssemblyGuid}/Lines/{AssemblyLineGuid}
Delete a Parked assembly.
DELETE /Assemblies/{AssemblyGuid}
Delete an Assembly Line from an existing Parked Assembly.
DELETE /Assemblies/{AssemblyGuid}/Lines/{AssemblyLineGuid}
Note: This endpoint does not support Batch or Serial numbers. These will need to be entered manually via the web.
GET Assemblies
Available Filters for GET Assemblies
Filter
Description
assemblyNumber
Returns a single assembly with the specified assembly number. If specified, it overrides all other filters.
assemblyStatus
Returns assemblies for the specified status.
customAssemblyStatus
Returns assemblies for the specified custom status. If specified, this filter will override the assemblyStatus filter.
endDate
Returns assemblies created before a specified date in the ISO format YYYY-MM-DD.
modifiedSince
Returns assemblies created or edited after a specified date in the ISO format YYYY-MM-DD. For example: modifiedSince=2016-07-01.
pageSize
Specifies the page size for pagination. Default page size is 200 assemblies.Note: Requesting large numbers of assemblies can be susceptible to poor network performance. Please reduce the page size if you experience delayed requests.
startDate
Returns assemblies created after a specified date in the ISO format YYYY-MM-DD.
Note: Date filters should be provided in the ISO format YYYY-MM-DD.
Filters are used by adding the filter and value to the URI:
/Assemblies?assemblyNumber=ACME&includeObsolete=true
/Assemblies?assemblyStatus=Parked
- return all Assemblies with the Parked status, including any custom statuses that are an extension of the PARKED status
/Assemblies?CustomAssemblyStatus=Sand, Paint
- return all Assemblies that have the ‘Sand' or ‘Paint’ status
/Assemblies?CustomAssemblyStatus=Paint&startDate=2023-08-20
- returns all Assemblies that have the 'Sand' status and were created after August 20th in 2023.
Available Fields for GET Assemblies
Property
Type
Length
ActualDuration
String
50
AssembleBy
Date
AssemblyDate
Date
AssemblyLines
AssemblyLine Collection
AssemblyNumber
String
15
AssemblyStatus
String
15
AssemblyType
String
15
AutoAssembly
Boolean
BatchNumbers
Batch Collection
CanAssembleQuantity
Decimal
Comments
String
1024
CreatedBy
String
256
CreatedOn
Date
CustomAssemblyStatus
String
15
DestinationWarehouse
Warehouse
DisassembleCostTotal
Decimal
DurationComments
String
2048
EstimatedStartDate
Date
ExpectedDuration
String
50
Guid
Guid
LastModifiedBy
String
256
LastModifiedOn
Date
Product
Product
Quantity
Decimal
SalesOrderNumber
String
20
SerialNumbers
Serial Collection
SourceWarehouse
Warehouse
SupplierCosts
SupplierCost Collection
SupplierCostsSubTotal
Decimal
SupplierCostsTax
Decimal
Total
Decimal
TotalCost
Decimal
Available Fields for Warehouse
Property
Type
Length
Guid
Guid
IsDefault
Boolean
LastModifiedOn
Date
Obsolete
Boolean
WarehouseCode
String
15
WarehouseName
String
100
Available Fields for Assembly Lines
Property
Type
Length
BatchNumbers
Batch Collection
DisassembleCost
Decimal
Guid
Guid
LastModifiedOn
Date
Product
Product
Quantity
Integer
SerialNumbers
Serial Collection
SubAssemblyGuid
Guid
TotalCost
Decimal
UnitCost
Decimal
WastageQuantity
Decimal
Available Fields for Batch
Property
Type
Length
BatchNumber (XML) / Number (JSON)
String
50
ExpiryDate
Nullable DateTime
LastModifiedOn
Date
Quantity
Decimal
Available Fields for Product
Property
Type
Length
Guid
Guid
ProductCode
String
100
ProductDescription
String
500
Available Fields for Serial
Property
Type
Length
LastModifiedOn
Date
Guid
Guid
SerialNumber
String
50
Available Fields for Supplier Cost
Property
Type
Length
Comment
String
200
Cost
Decimal
CostDate
Date
Currency
Currency
ExchangeRate
Decimal
LastModifiedOn
Date
Reference
String
200
Supplier
Supplier
TaxCode
String
50
TaxLine
Decimal
TaxRate
Nullable Decimal
Available Fields for Currency
Property
Type
Length
CurrencyCode
String
3
Description
String
200
DefaultBuyRate
Decimal
DefaultSellRate
Decimal
Guid
Guid
LastModifiedOn
DateTime
Available Fields for Supplier
Property
Type
Length
Guid
Guid
SupplierCode
String
500
SupplierName
String
500
Examples for Response GET /Assemblies
show xml example
<?xml version="1.0"?>
<Assembly xmlns:xsd= "http://www.w3.org/2001/XMLSchema" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xmlns= "http://api.unleashedsoftware.com/version/1" >
<Guid> b87cfd66-25dd-4cac-95cd-743bc187dd49</Guid>
<LastModifiedOn> 2018-10-31T00:22:27.8826027</LastModifiedOn>
<AssemblyNumber> ASM-00000008</AssemblyNumber>
<AssemblyDate> 2018-10-31T00:22:27.8669688</AssemblyDate>
<AssemblyType> Assembly</AssemblyType>
<AssemblyStatus> Completed</AssemblyStatus>
<CustomeAssemblyStatus> CustomStatus</CustomeAssemblyStatus>
<AutoAssembly> true</AutoAssembly>
<Quantity> 4.0000</Quantity>
<AssembleBy> 2021-02-02T00:00:00</AssembleBy>
<Comments> Created for Invoice SO-00000124.</Comments>
<CanAssembleQuantity> 5.7000</CanAssembleQuantity>
<Product>
<Guid> facf323c-44c8-4a96-9cff-0629bd4250c6</Guid>
<ProductCode> BOOKSHELF</ProductCode>
<ProductDescription> Wooden Bookshelf</ProductDescription>
</Product>
<AssemblyLines>
<AssemblyLine>
<Guid> abfa6b98-ac83-40ed-b01c-9f018b28460e</Guid>
<Product>
<Guid> 8333db36-46ca-47f6-9299-3b0c4cd861a2</Guid>
<ProductCode> SIDE</ProductCode>
<ProductDescription> Bookshelf Side</ProductDescription>
</Product>
<Quantity> 4.0000</Quantity>
<DisassembleCost xsi:nil= "true" />
<WastageQuantity> 0.0000</WastageQuantity>
<UnitCost> 804.5960</UnitCost>
<TotalCost> 3218.3840</TotalCost>
<LastModifiedOn> 2018-10-31T00:22:27.7732191</LastModifiedOn>
<SubAssemblyGuid xsi:nil= "true" />
</AssemblyLine>
<AssemblyLine>
<Guid> abfa6b98-ac83-40ed-b01c-9f018b28460e</Guid>
<Product>
<Guid> 636725ec-7e68-4139-aea8-14495e510bc6</Guid>
<ProductCode> STAIN</ProductCode>
<ProductDescription> Dark Wood Stain</ProductDescription>
</Product>
<Quantity> 4.0000</Quantity>
<DisassembleCost xsi:nil= "true" />
<WastageQuantity> 0.0000</WastageQuantity>
<UnitCost> 80.8316</UnitCost>
<TotalCost> 323.3264</TotalCost>
<LastModifiedOn> 2018-10-31T00:22:27.804477</LastModifiedOn>
<SubAssemblyGuid xsi:nil= "true" />
</AssemblyLine>
<AssemblyLine>
<Guid> abfa6b98-ac83-40ed-b01c-9f018b28460e</Guid>
<Product>
<Guid> 6f9d1c47-aafb-4449-8bfc-e4a950db4110</Guid>
<ProductCode> SHELF</ProductCode>
<ProductDescription> Bookshelf Shelf</ProductDescription>
</Product>
<Quantity> 40.0000</Quantity>
<DisassembleCost xsi:nil= "true" />
<WastageQuantity> 0.0000</WastageQuantity>
<UnitCost> 86.3154</UnitCost>
<TotalCost> 3452.6160</TotalCost>
<LastModifiedOn> 2018-10-31T00:22:27.820095</LastModifiedOn>
<SubAssemblyGuid xsi:nil= "true" />
</AssemblyLine>
<AssemblyLine>
<Guid> abfa6b98-ac83-40ed-b01c-9f018b28460e</Guid>
<Product>
<Guid> 36ae4925-aa47-48ef-8b52-6c07205dbbec</Guid>
<ProductCode> COUCH2</ProductCode>
<ProductDescription> 2-Seater Couch</ProductDescription>
</Product>
<Quantity> 20.0000</Quantity>
<DisassembleCost xsi:nil= "true" />
<WastageQuantity> 0.0000</WastageQuantity>
<UnitCost> 8.5041</UnitCost>
<TotalCost> 170.0820</TotalCost>
<LastModifiedOn> 2018-10-31T00:22:27.8513394</LastModifiedOn>
<SubAssemblyGuid xsi:nil= "true" />
</AssemblyLine>
</AssemblyLines>
<SupplierCosts />
<SourceWarehouse>
<Guid> a6f76423-1363-4421-9db8-16e75b7886b9</Guid>
<LastModifiedOn> 2018-10-30T22:49:58.92</LastModifiedOn>
<WarehouseCode> HQ</WarehouseCode>
<WarehouseName> Head Office</WarehouseName>
<IsDefault> false</IsDefault>
<Obsolete> false</Obsolete>
</SourceWarehouse>
<DestinationWarehouse>
<Guid> a6f76423-1363-4421-9db8-16e75b7886b9</Guid>
<LastModifiedOn> 2018-10-30T22:49:58.92</LastModifiedOn>
<WarehouseCode> HQ</WarehouseCode>
<WarehouseName> Head Office</WarehouseName>
<IsDefault> false</IsDefault>
<Obsolete> false</Obsolete>
</DestinationWarehouse>
<Total> 7164.41</Total>
<TotalCost> 7164.41</TotalCost>
<DisassembleCostTotal xsi:nil= "true" />
<SupplierCostsTax> 0.00</SupplierCostsTax>
<SupplierCostsSubTotal> 0.00</SupplierCostsSubTotal>
<SalesOrderNumber> SO-123456789</SalesOrderNumber>
<LastModifiedBy> test@unleashedsoftware.com</LastModifiedBy>
<CreatedBy> test@unleashedsoftware.com</CreatedBy>
<CreatedOn> 2018-10-31T00:21:52.0491654</CreatedOn>
<ExpectedDuration> 14h</ExpectedDuration>
<ActualDuration> 20h</ActualDuration>
<EstimatedStartDate> 2021-02-04T00:00:00</EstimatedStartDate>
<DurationComments> Production was interrupted halfway through</DurationComments>
</Assembly>
show json example
{
"AssemblyNumber" : "ASM-00000008" ,
"AssemblyDate" : "/Date(1540945347866)/" ,
"AssemblyType" : "Assembly" ,
"AssemblyStatus" : "Completed" ,
"CustomAssemblyStatus" : "CustomStatus" ,
"AutoAssembly" : true ,
"Quantity" : 4 ,
"AssembleBy" : "/Date(1612224000000)/" ,
"Comments" : "Created for Invoice SO-00000124." ,
"CanAssembleQuantity" : 5.7 ,
"BatchNumbers" : null ,
"SerialNumbers" : null ,
"Product" : {
"Guid" : "facf323c-44c8-4a96-9cff-0629bd4250c6" ,
"ProductCode" : "BOOKSHELF" ,
"ProductDescription" : "Wooden Bookshelf"
},
"AssemblyLines" : [
{
"Guid" : "abfa6b98-ac83-40ed-b01c-9f018b28460e" ,
"Product" : {
"Guid" : "8333db36-46ca-47f6-9299-3b0c4cd861a2" ,
"ProductCode" : "SIDE" ,
"ProductDescription" : "Bookshelf Side"
},
"BatchNumbers" : null ,
"SerialNumbers" : null ,
"Quantity" : 4 ,
"DisassembleCost" : null ,
"WastageQuantity" : 0 ,
"UnitCost" : 804.596 ,
"TotalCost" : 3218.384 ,
"LastModifiedOn" : "/Date(1540945347773)/" ,
"SubAssemblyGuid" : null
},
{
"Guid" : "abfa6b98-ac83-40ed-b01c-9f018b28460e" ,
"Product" : {
"Guid" : "636725ec-7e68-4139-aea8-14495e510bc6" ,
"ProductCode" : "STAIN" ,
"ProductDescription" : "Dark Wood Stain"
},
"BatchNumbers" : null ,
"SerialNumbers" : null ,
"Quantity" : 4 ,
"DisassembleCost" : null ,
"WastageQuantity" : 0 ,
"UnitCost" : 80.8316 ,
"TotalCost" : 323.3264 ,
"LastModifiedOn" : "/Date(1540945347804)/" ,
"SubAssemblyGuid" : null
},
{
"Guid" : "abfa6b98-ac83-40ed-b01c-9f018b28460e" ,
"Product" : {
"Guid" : "6f9d1c47-aafb-4449-8bfc-e4a950db4110" ,
"ProductCode" : "SHELF" ,
"ProductDescription" : "Bookshelf Shelf"
},
"BatchNumbers" : null ,
"SerialNumbers" : null ,
"Quantity" : 40 ,
"DisassembleCost" : null ,
"WastageQuantity" : 0 ,
"UnitCost" : 86.3154 ,
"TotalCost" : 3452.616 ,
"LastModifiedOn" : "/Date(1540945347820)/" ,
"SubAssemblyGuid" : null
},
{
"Guid" : "abfa6b98-ac83-40ed-b01c-9f018b28460e" ,
"Product" : {
"Guid" : "36ae4925-aa47-48ef-8b52-6c07205dbbec" ,
"ProductCode" : "COUCH2" ,
"ProductDescription" : "2-Seater Couch"
},
"BatchNumbers" : null ,
"SerialNumbers" : null ,
"Quantity" : 20 ,
"DisassembleCost" : null ,
"WastageQuantity" : 0 ,
"UnitCost" : 8.5041 ,
"TotalCost" : 170.082 ,
"LastModifiedOn" : "/Date(1540945347851)/" ,
"SubAssemblyGuid" : null
}
],
"SupplierCosts" : [],
"SourceWarehouse" : {
"WarehouseCode" : "HQ" ,
"WarehouseName" : "Head Office" ,
"IsDefault" : false ,
"StreetNo" : null ,
"AddressLine1" : null ,
"AddressLine2" : null ,
"Suburb" : null ,
"City" : null ,
"Region" : null ,
"Country" : null ,
"PostCode" : null ,
"PhoneNumber" : null ,
"FaxNumber" : null ,
"MobileNumber" : null ,
"DDINumber" : null ,
"ContactName" : null ,
"Obsolete" : false ,
"Guid" : "a6f76423-1363-4421-9db8-16e75b7886b9" ,
"LastModifiedOn" : "/Date(1540939798920)/"
},
"DestinationWarehouse" : {
"WarehouseCode" : "HQ" ,
"WarehouseName" : "Head Office" ,
"IsDefault" : false ,
"StreetNo" : null ,
"AddressLine1" : null ,
"AddressLine2" : null ,
"Suburb" : null ,
"City" : null ,
"Region" : null ,
"Country" : null ,
"PostCode" : null ,
"PhoneNumber" : null ,
"FaxNumber" : null ,
"MobileNumber" : null ,
"DDINumber" : null ,
"ContactName" : null ,
"Obsolete" : false ,
"Guid" : "a6f76423-1363-4421-9db8-16e75b7886b9" ,
"LastModifiedOn" : "/Date(1540939798920)/"
},
"Total" : 7164.41 ,
"TotalCost" : 7164.41 ,
"DisassembleCostTotal" : null ,
"SupplierCostsTax" : 0 ,
"SupplierCostsSubTotal" : 0 ,
"SalesOrderNumber" : "SO-123456789" ,
"ExpectedDuration" : "14h" ,
"ActualDuration" : "20h" ,
"EstimatedStartDate" : "/Date(11612350000)/" ,
"DurationComments" : "Production was interrupted halfway through,
" LastModifiedBy ": " test@unleashedsoftware.com ",
" CreatedBy ": " test@unleashedsoftware.com ",
" CreatedOn ": " /Date( 1540945312049 )/ ",
" Guid ": " b 87 cfd 66-25 dd -4 cac -95 cd -743 bc 187 dd 49 ",
" LastModifiedOn ": " /Date( 1540945347882 )/ "
}
POST/PUT Assemblies
Warning:
Post/Put does not accept user-generated GUIDs.
Available Fields for POST/PUT Assemblies
Note: If one of the editable fields for PUT is blank, the previous value will be overwritten with the blank value.
Property
Type
Length
POST
PUT
Notes
ActualDuration
String
50
Must be a human-readable time string i.e. "6h 38s" or "8000m"
AssembleBy
Date
AssemblyLines
AssemblyLine Collection
Requires at least one to Complete.
Comments
String
1024
DestinationWarehouse
Warehouse
DurationComments
String
2048
ExpectedDuration
String
50
Must be a human-readable time string i.e. "6h 38s" or "8000m". Will be automatically populated with related Bill of Materials value (if available) if left blank for POST
Guid
Guid
N/A
Required
Product
Product
Required
N/A
Must be an assembled product.
Quantity
Decimal
Must be greater than 0 to Complete.
SourceWarehouse
Warehouse
Note: If Assembly Lines are provided on creation, these will override the Product's BOM lines.
Available Fields for Warehouse
Note: At a minimum, a valid Guid
or WarehouseCode
is required. If both Guid
and WarehouseCode
are provided but do not match, an error will be thrown.
Property
Type
Length
POST
PUT
Guid
Guid
Optional
Optional
WarehouseCode
String
15
Optional
Optional
Available Fields for Assembly Lines
Property
Type
Length
POST
PUT
Notes
ExpenseAccount
String
50
Required
Required
Only for a Never Diminishing Product. Must be a valid Expense Account Code.
Guid
Guid
N/A
Required
Product
Product
Required
N/A
Quantity
Decimal
UnitCost
Decimal
Only for a Never Diminishing Product.
WastageQuantity
Decimal
Available Fields for Product
Note: At a minimum, a valid Guid
or ProductCode
is required. If both Guid
and ProductCode
are provided but do not match, an error will be thrown.
Property
Type
Length
POST
PUT
Guid
Guid
Optional
Optional
ProductCode
String
100
Optional
Optional
Examples for Request POST /Assemblies
show xml example
<?xml version="1.0" encoding="UTF-8"?>
<Assembly xmlns:xsd= "http://www.w3.org/2001/XMLSchema" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xmlns= "http://api.unleashedsoftware.com/version/1" >
<Product>
<ProductCode> BOOKSHELF</ProductCode>
</Product>
<SourceWarehouse>
<WarehouseCode> MAIN</WarehouseCode>
</SourceWarehouse>
<DestinationWarehouse>
<WarehouseCode> MAIN</WarehouseCode>
</DestinationWarehouse>
<Quantity> 10</Quantity>
<AssembleBy> 2021-12-25</AssembleBy>
<Comments> Assembly Comments</Comments>
<AssemblyLines>
<AssemblyLine>
<Product>
<ProductCode> STAIN</ProductCode>
</Product>
<Quantity> 5</Quantity>
<WastageQuantity> 1</WastageQuantity>
</AssemblyLine>
</AssemblyLines>
<ExpectedDuration> 40m</ExpectedDuration>
<ActualDuration> 5000h</ActualDuration>
<DurationComments> oopsie</DurationComments>
</Assembly>
show json example
{
"Product" : {
"ProductCode" : "BOOKSHELF"
},
"SourceWarehouse" : {
"WarehouseCode" : "MAIN"
},
"DestinationWarehouse" : {
"WarehouseCode" : "MAIN"
},
"Quantity" : 10 ,
"AssembleBy" : "2021-12-25" ,
"Comments" : "Assembly Comments" ,
"AssemblyLines" : [
{
"Product" : {
"ProductCode" : "STAIN"
},
"Quantity" : 5 ,
"WastageQuantity" : 1
}
],
"ExpectedDuration" : "40m" ,
"ActualDuration" : "5000h" ,
"DurationComments" : "oopsie"
}
Examples for Request PUT /Assemblies/{AssemblyGuid}
show xml example
<?xml version="1.0" encoding="UTF-8"?>
<Assembly xmlns:xsd= "http://www.w3.org/2001/XMLSchema" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xmlns= "http://api.unleashedsoftware.com/version/1" >
<Guid> 16d5fec1-df48-4c8d-92f0-57c6ae0bcec4</Guid>
<Product>
<ProductCode> BOOKSHELF</ProductCode>
</Product>
<SourceWarehouse>
<WarehouseCode> MAIN</WarehouseCode>
</SourceWarehouse>
<DestinationWarehouse>
<WarehouseCode> HQ</WarehouseCode>
</DestinationWarehouse>
<Quantity> 5</Quantity>
<AssembleBy> 2021-12-25</AssembleBy>
<Comments> Assembly Comments</Comments>
<AssemblyLines>
<AssemblyLine>
<Product>
<ProductCode> STAIN</ProductCode>
</Product>
<Quantity> 3</Quantity>
<WastageQuantity> 1</WastageQuantity>
</AssemblyLine>
</AssemblyLines>
<ExpectedDuration> 40m</ExpectedDuration>
<ActualDuration> 20m 50s</ActualDuration>
<DurationComments> Larry pulled out all the stops</DurationComments>
</Assembly>
show json example
{
"Guid" : "16d5fec1-df48-4c8d-92f0-57c6ae0bcec4" ,
"Product" : {
"ProductCode" : "BOOKSHELF"
},
"SourceWarehouse" : {
"WarehouseCode" : "MAIN"
},
"DestinationWarehouse" : {
"WarehouseCode" : "HQ"
},
"Quantity" : 5 ,
"AssembleBy" : "2021-12-25" ,
"Comments" : "Assembly Comments" ,
"AssemblyLines" : [
{
"Product" : {
"ProductCode" : "STAIN"
},
"Quantity" : 3 ,
"WastageQuantity" : 1
}
],
"ExpectedDuration" : "40m" ,
"ActualDuration" : "20m 50s" ,
"DurationComments" : "oLarry pulled out all the stops"
}
POST/PUT Assembly Lines
Note:
{AssemblyLineGuid}
must be provided in the request url and body when updating an Assembly Line.
Available Fields for POST/PUT Assembly Lines
Property
Type
Length
Notes
POST
PUT
ExpenseAccount
String
50
Only for a Never Diminishing Product. Must be a valid Expense Account Code.
Required
Required
Guid
Guid
N/A
Required
Product
Product
Required
N/A
Quantity
Decimal
UnitCost
Decimal
Only for a Never Diminishing Product.
WastageQuantity
Decimal
Available Fields for Product
Note: At a minimum, a valid Guid
or ProductCode
is required. If both Guid
and ProductCode
are provided but do not match, an error will be thrown.
Property
Type
Length
POST
PUT
Guid
Guid
Optional
Optional
ProductCode
String
100
Optional
Optional
Examples for Request POST /Assemblies/{AssemblyGuid}/Lines
show xml example
<?xml version="1.0" encoding="UTF-8"?>
<AssemblyLine xmlns:xsd= "http://www.w3.org/2001/XMLSchema" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xmlns= "http://api.unleashedsoftware.com/version/1" >
<Product>
<ProductCode> STAIN</ProductCode>
</Product>
<Quantity> 5</Quantity>
<WastageQuantity> 1</WastageQuantity>
</AssemblyLine>
show json example
{
"Product" : {
"ProductCode" : "STAIN"
},
"Quantity" : 5 ,
"WastageQuantity" : 1
}
Examples for Request PUT /Assemblies/{AssemblyGuid}/Lines/{AssemblyLineGuid}
show xml example
<?xml version="1.0" encoding="UTF-8"?>
<AssemblyLine xmlns:xsd= "http://www.w3.org/2001/XMLSchema" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xmlns= "http://api.unleashedsoftware.com/version/1" >
<Guid> 16d5fec1-df48-4c8d-92f0-57c6ae0bcec4</Guid>
<Quantity> 5</Quantity>
<WastageQuantity> 2</WastageQuantity>
</AssemblyLine>
show json example
{
"Guid" : "16d5fec1-df48-4c8d-92f0-57c6ae0bcec4" ,
"Quantity" : 5 ,
"WastageQuantity" : 2
}