DELETE costcentre/deletecustomer

Deletes the customer.

Request Information

Parameters

NameDescriptionAdditional information
address
T
            The address.
            1) ReferenceNumber: Mandatory. String max 10chars. Will add customer based on company reference number. 
            2) AccountNumber: Mandatory. String, max 10 chars. Account number for company that the cost centre and customer belongs to
            3) Email: Mandatory. String, max 100 chars. Customers email address for the company

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "AccountNumber": "sample string 1",
  "Type": "sample string 2",
  "ReferenceNumber": "sample string 3",
  "AddressName": "sample string 4",
  "Address1": "sample string 5",
  "Address2": "sample string 6",
  "Address3": "sample string 7",
  "City": "sample string 8",
  "County": "sample string 9",
  "Postcode": "sample string 10",
  "Tel": "sample string 11",
  "Fax": "sample string 12",
  "ApplyAllCustomers": true,
  "DateAdded": "2024-03-29T02:08:06.5444903+00:00",
  "NewReferenceNumber": "sample string 15",
  "Email": "sample string 16"
}

application/xml, text/xml

Sample:
<CompanyAddressModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Webi.Api2.Models">
  <AccountNumber>sample string 1</AccountNumber>
  <Address1>sample string 5</Address1>
  <Address2>sample string 6</Address2>
  <Address3>sample string 7</Address3>
  <AddressName>sample string 4</AddressName>
  <ApplyAllCustomers>true</ApplyAllCustomers>
  <City>sample string 8</City>
  <County>sample string 9</County>
  <DateAdded>2024-03-29T02:08:06.5444903+00:00</DateAdded>
  <Email>sample string 16</Email>
  <Fax>sample string 12</Fax>
  <NewReferenceNumber>sample string 15</NewReferenceNumber>
  <Postcode>sample string 10</Postcode>
  <ReferenceNumber>sample string 3</ReferenceNumber>
  <Tel>sample string 11</Tel>
  <Type>sample string 2</Type>
</CompanyAddressModel>

application/x-www-form-urlencoded

Sample:

Sample not available.