I am wondering if whether in the API for AtTask there is a method for posting multiple updates in a single URL request.
As an example, I need to update the extRefIDs on 1,000 records. Do I make 1,000 calls to the API (expensive in terms of overhead), or can I send a single request with a JSON or XML payload that contains something like this:
{data
{id:1234,extRefID:xx}
{id:1235,extrefID:xy}
}
etc? Would certainly be less overhead on both systems if there was a method for this. Thanks in advance!