AutoPay Deletion Request in JSON Format

The following code snippet illustrates how the tags should be nested while receiving the autopay deletion request in the JSON format:
Note: You can delete an autopay request either for an accountId or autopayId.

Deleting the autopay information for an AccountId

{
    "C1-DeleteAutoPayService":
    {
        "accountId": "",
        "accountIdentifierType": "",
        "accountNumber": "",
        "division": "",
        "sourceSystem": "",
        "c1ExternalTransactionId": "",
        "externalSourceId": "",
    }
}

Deleting the autopay information for an AutoPayId

{
    "C1-DeleteAutoPayService":
  {
        "accountId": "",
        "accountIdentifierType": "",
        "accountNumber": "",
        "division": "",
        "sourceSystem": "",
        "c1ExternalTransactionId": "",
        "externalSourceId": "",
        "accountautopaydata":
    [
            {
                "accountAutoPayId": ""
            }
         ]
    }
}

Related Topics

For more information on... See...
AutoPay Deletion Response in JSON Format AutoPay Deletion Response in JSON Format
AutoPay Deletion Request and Response - Attribute/Value Pairs in JSON Format AutoPay Deletion Request and Response - Attribute/Value Pairs in JSON Format
Sample AutoPay Deletion Request and Response in JSON Format Sample AutoPay Add/Update Request and Response in JSON Format