_post("customers/{$customerId}/tax_ids", $parameters); } /** * Retrieves an existing customer tax id. * * @param string $customerId * @param string $taxId * @return array */ public function find($customerId, $taxId) { return $this->_get("customers/{$customerId}/tax_ids/{$taxId}"); } /** * Deletes an existing customer tax id. * * @param string $customerId * @param string $taxId * @return array */ public function delete($customerId, $taxId) { return $this->_delete("customers/{$customerId}/tax_ids/{$taxId}"); } /** * Lists all tax ids of the given customer. * * @param string $customerId * @param array $parameters * @return array */ public function all($customerId, array $parameters = []) { return $this->_get("customers/{$customerId}/tax_ids", $parameters); } }