Skip to main content

SET DATA

Use this action to add or update values in tables. Limit to 2000 objects per request. In the example below we would insert and/or update two item_extension objects. Use the request method PUT
PUT {api_url}/api/tables/{TableName} HTTP/1.1

Content-Type: application/json
Authorization: Bearer {token} //or APIKey
client_id: {unique client id} //when API key client id not needed 


[
    {
        "cd_ItemNumber": "ABC123",
        "Material": "Steel",
        "Width": 10,
        "Supplier": "Supplier Name"
    },
    {
        "cd_ItemNumber": "ABC125",
        "Material": "Alu",
        "Width": 20,
        "Supplier": "Supplier Name"
    }

]
I