Name
(* = required)
Data Type Description
customerId
*
int
facilityId
*
int
transformId
int
channelId
int
id of channel, if any, through whcih these receivers were imported
skipInvalidReceivers
bool
true: create as many as you can; false: all or nothing
this object model should not be used directly by the API client, but is assembled by the media formatter from the request's content-type and payload
Type
Description
ContentType
string
obtained from the HTTP "Content-Type" header
Content
Object
obtained from the HTTP payload
Sample content-type: application/hal+json
Copy to clipboard
copied
{
"contentType": "str" ,
"content": {}
}
Type
Description
ReceiverCreationsAttempted
int?
ReceiversToCreate
int?
ImportFileCreateResults
Inventory.Models.ImportFileCreateResults
Links to each newly created receiver
FaultedReceivers
Generic.Models.Exceptions.ListException
container of WmsExceptionBase-derived exceptions occuring during actions on lists, such as import or mass ops
Message
string
Faults
IList<Generic.Models.Exceptions.ListEntryFault>
EntryNumber
int
1-indexed position in the source list
EntryInfo
string
optional info about the entry in the source list, such as id, sku, ref#, etc.
WmsException
Generic.Models.Exceptions.WmsExceptionBase
for more details at runtime see which WmsExceptionBase-derived exception it is
ErrorCode
string
could have been a number, but is a short string for human readability; not to be localized
Hint
string
helpful word or two if the thrower happens to know more things; not to be localized
Message
string
InnerException
System.Exception
ReceiverIdentifiers
IEnumerable<Generic.Models.ReceiverIdentifier>
Id
int
Links
IList<WebApi.Hal.Link>
-
/rels/inventory/receiver
newly created receivers
Links
IList<WebApi.Hal.Link>
-
/rels/inventory/fileimportasyncstatus
may be polled until the operation is complete or fails
Sample accept: application/hal+json
{
"receiverCreationsAttempted": 1 ,
"receiversToCreate": 1 ,
"_embedded": {
"http://api.3plCentral.com/rels/inventory/fileimport": {
"faultedReceivers": {
"message": "ListException: Faults [{EntryNumber 1, }]" ,
"faults": [
{
"entryNumber": 1 ,
"entryInfo": "str"
}
],
"data": {},
"helpLink": "str" ,
"source": "str" ,
"hResult": 3
},
"receiverIdentifiers": [
{
"id": 1
}
]
}
}
}