# Custom Objects Zuora Custom Objects provides a uniform custom data service for you to manage custom objects in Zuora. Those custom data is stored on Zuora's platform and can be used to extend the data model to accommodate your specific use cases. ## List custom objects - [GET /custom_objects/{custom_object_type}](https://developer.zuora.com/other-api/quickstart-api/custom-objects/getcustomobjects.md): Returns a list of your custom objects. ## Create a custom object - [POST /custom_objects/{custom_object_type}](https://developer.zuora.com/other-api/quickstart-api/custom-objects/createcustomobject.md): Creates a new custom object. ## Retrieve a custom object - [GET /custom_objects/{custom_object_type}/{custom_object_id}](https://developer.zuora.com/other-api/quickstart-api/custom-objects/getcustomobject.md): Retrieves the custom object with the given ID. ## Update a custom object - [PATCH /custom_objects/{custom_object_type}/{custom_object_id}](https://developer.zuora.com/other-api/quickstart-api/custom-objects/updatecustomobject.md): Updates the specified custom object by setting the values of the parameters passed. Any parameters not provided will be left unchanged. ## Delete a custom object - [DELETE /custom_objects/{custom_object_type}/{custom_object_id}](https://developer.zuora.com/other-api/quickstart-api/custom-objects/deletecustomobject.md): Permanently deletes a custom object. It cannot be undone.