POST api/v1/customer/payments/remove
Remove an existing payment profile
Request Information
URI Parameters
None.
Body Parameters
PaymentProfileRemoveBindingModelName | Description | Type | Additional information |
---|---|---|---|
Authentication | AuthenticationModel |
Required |
|
Request | PaymentProfileRemoveRequestModel |
Required |
Request Formats
application/json, text/json
Sample:
{ "Authentication": { "Id": "170200123", "Key": "467512342123" }, "Request": { "CustomerProfileId": "123456789", "PaymentProfileId": "123456789", "RemovalDateTime": "2025-04-19 08:29:17 (YYYY-MM-DD HH:MM:SS - UTC format)" } }
application/xml, text/xml
Sample:
<PaymentProfileRemoveBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Payments.Api.Models"> <Authentication> <Id>170200123</Id> <Key>467512342123</Key> </Authentication> <Request> <CustomerProfileId>123456789</CustomerProfileId> <PaymentProfileId>123456789</PaymentProfileId> <RemovalDateTime>2025-04-19 08:29:17 (YYYY-MM-DD HH:MM:SS - UTC format)</RemovalDateTime> </Request> </PaymentProfileRemoveBindingModel>
Response Information
Resource Description
ProfileOutgoingModelName | Description | Type | Additional information |
---|---|---|---|
Message | MessageModel |
None. |
|
Response | IProfileResponseModel |
None. |
Response Formats
application/json, text/json
Sample:
{ "Message": { "Code": "(2 digit code reflecting result of request - 00 is good)", "Description": "(Message response in text depending upon request/result of request)" }, "Response": { "CustomerProfileId": "000000000 (some 9 digit code/will be null for registering payment only)", "PaymentProfileId": "000000000 (some 9 digit code)" } }
application/xml
Sample:
Sample not available.
text/xml
Sample:
Sample not available.