> ## Documentation Index
> Fetch the complete documentation index at: https://developer.priceedge.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Set data

> This takes a table namn as parameter and updates or insert the data.

### 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**

```Http theme={null}
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"
    }

]
```
