POST api/PaymentProcessor/DeleteCustomer
Request Information
URI Parameters
None.
Body Parameters
CustomerViewModelName | Description | Type | Additional information |
---|---|---|---|
CustomerNumber | integer |
None. |
|
MaskedCreditCardNumber | string |
None. |
|
PaymentType | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "customerNumber": 1, "maskedCreditCardNumber": "sample string 1", "paymentType": "sample string 2" }
application/xml, text/xml
Sample:
<CustomerViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StairBiz.Contracts.ViewModels"> <CustomerNumber>1</CustomerNumber> <MaskedCreditCardNumber>sample string 1</MaskedCreditCardNumber> <PaymentType>sample string 2</PaymentType> </CustomerViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>