Attribute Import
  • 1 Minute to read
  • PDF

Attribute Import

  • PDF

Article summary

Attribute Import

 

 

An attribute in WithoutWire gives the user a means to extend a core value type (SERIAL, DATE, LOT).   The update references the object using a query string parameter called objectID.  Item Number should be passed into this parameter.  The attribute to use should already be set up in WithoutWire.  This API does not create new attributes.  

 

 

 

Request Header

 

Client

 

Accept: application/json

 

 

Security

 

Authorization: <ClientKey>

 

 

Transport

 

Host: withoutwire.com

 

 

Verb

 

PUT

 

 

 

Example

 

PUT https://api.withoutwire.com/integration/attribute?objectID={item123}&ObjectReference={Serial123}


Accept: application/json


Authorization: <ClientKey>


Content-Type: application/json


Host: api.withoutwire.com


Content-Length: 100


Expect: 100-continue


Connection:  Keep-Alive

 

Request Body: Attribute Object


[

   {

       "ObjectType": "",                 //Required - The attribute type

       "ObjectName": "",               //Required - The attribute name

       "ObjectDescription": "",       //Required - The attribute description displayed on mobile

       "ObjectDataType": "",         //Required - Boolean, Date, Decimal, Image, Integer, String

       "ObjectValue": "",                //Required depending on item's core value type      

   }

]



Response Body: Import Response Object