{ "opencollection": "1.0.0", "info": { "name": "Amazon DynamoDB Batch Items API", "version": "2012-08-10" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Items", "type": "folder" }, "items": [ { "info": { "name": "Amazon DynamoDB Put an Item Into a Table", "type": "http" }, "http": { "method": "POST", "url": "https://dynamodb.{region}.amazonaws.com/#PutItem", "headers": [ { "name": "X-Amz-Target", "value": "" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new item, or replaces an old item with a new item. If an item that has the same primary key as the new item already exists in the specified table, the new item completely replaces the existing item." }, { "info": { "name": "Amazon DynamoDB Get an Item from a Table", "type": "http" }, "http": { "method": "POST", "url": "https://dynamodb.{region}.amazonaws.com/#GetItem", "headers": [ { "name": "X-Amz-Target", "value": "" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Returns a set of attributes for the item with the given primary key. If there is no matching item, GetItem does not return any data and there will be no Item element in the response." }, { "info": { "name": "Amazon DynamoDB Update an Item in a Table", "type": "http" }, "http": { "method": "POST", "url": "https://dynamodb.{region}.amazonaws.com/#UpdateItem", "headers": [ { "name": "X-Amz-Target", "value": "" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Edits an existing item's attributes, or adds a new item to the table if it does not already exist. You can put, delete, or add attribute values using update expressions." }, { "info": { "name": "Amazon DynamoDB Delete an Item from a Table", "type": "http" }, "http": { "method": "POST", "url": "https://dynamodb.{region}.amazonaws.com/#DeleteItem", "headers": [ { "name": "X-Amz-Target", "value": "" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Deletes a single item in a table by primary key. You can perform a conditional delete operation that deletes the item if it exists, or if it has an expected attribute value." } ] } ], "bundled": true }