# Usage Records The operations in this section allows you to create, update, get, or delete usage records. Zuora expects no more than 25 million usage records per month. If you want to go over this limit, contact your Zuora account manager for further consultation. ## List usage records - [GET /usage_records](https://developer.zuora.com/other-api/quickstart-api/usage-records/getusagerecords.md): Returns an array of usage records. Each entry in the array is a separate Usage object. If no more usages are available, the resulting array will be empty. This request should never return an error. ## Create a usage record - [POST /usage_records](https://developer.zuora.com/other-api/quickstart-api/usage-records/createusage.md): Creates a new Usage object. ## Retrieve a usage record - [GET /usage_records/{id}](https://developer.zuora.com/other-api/quickstart-api/usage-records/getusage.md): Retrieves the usage with the given ID. ## Update a usage record - [PATCH /usage_records/{id}](https://developer.zuora.com/other-api/quickstart-api/usage-records/updateusage.md): Updates the usage record. Any fields on the object not provided in the request are not changed. ## Delete a usage record - [DELETE /usage_records/{id}](https://developer.zuora.com/other-api/quickstart-api/usage-records/deleteusage.md): Permanently deletes a usage object. It cannot be undone.