Create Rows

Add new row(s) of data into an existing collection. This accepts multiple row values if you'd like to insert more than one.

The request JSON must adhere to the structure of the collection. More than one row can be added at a time. See example JSON below for a collection with 4 fields.

[
    {
        "data": {
            "date": "01/03/2019",
            "entry-price": "$40",
            "event-image": "https://irt-cdn.multiscreensite.com/md/dmip/dms3rep/multi/young-woman-portrait-blue-eyes.jpg",
            "location": "San Jose"
        }
    },
    {
        "data": {
            "date": "01/13/2019",
            "entry-price": "$45",
            "event-image": "https://irt-cdn.multiscreensite.com/md/dmip/dms3rep/multi/young-woman-portrait-blue-eyes.jpg",
            "location": "New York"
        }
    }
]
Language