# Contacts Contacts represent your customer's contact details. ## Retrieve a contact - [GET /contacts/{contact_id}](https://developer.zuora.com/other-api/quickstart-api/contacts/getcontact.md): Retrieves the contact with the given ID. ## Update a contact - [PATCH /contacts/{contact_id}](https://developer.zuora.com/other-api/quickstart-api/contacts/updatecontact.md): Updates the specified contact by setting the values of the parameters passed. Any parameters not provided will be left unchanged. ## Delete a contact - [DELETE /contacts/{contact_id}](https://developer.zuora.com/other-api/quickstart-api/contacts/deletecontact.md): Permanently deletes a contact. It cannot be undone. ## List contacts - [GET /contacts](https://developer.zuora.com/other-api/quickstart-api/contacts/getcontacts.md): Returns a dictionary with a data property that contains an array of contacts, starting after the cursor, if used. Each entry in the array is a separate contact object. If no more contacts are available, the resulting array will be empty. This request should never return an error. ## Create a contact - [POST /contacts](https://developer.zuora.com/other-api/quickstart-api/contacts/createcontact.md): Creates a new contact object. ## Scrub a contact - [POST /contacts/{contact_id}/scrub](https://developer.zuora.com/other-api/quickstart-api/contacts/scrubcontact.md): Scrubs the sensitive data for the contact with the given ID.