Sample AutoPay Deletion Request and Response in JSON Format

Using the below example, you can delete an autopay request which has incorrect data.

Sample AutoPay Deletion Request for an AccountId in JSON Format

{
    "C1-DeleteAutoPayService":
    {
        "accountId": "8889143815",
        "accountIdentifierType": "ACCTNUM",
        "accountNumber": "2345678000",
        "division": "D0301",
        "sourceSystem": "DS01",
        "c1ExternalTransactionId": "787878",
        "externalSourceId": "2240",
    }
}

Sample AutoPay Deletion Request for an AutoPayId in JSON Format

{
    "C1-DeleteAutoPayService":
    {
        "accountId": "8889143815",
        "accountIdentifierType": "ACCTNUM",
        "accountNumber": "2345679000",
        "division": "D0401",
        "sourceSystem": "ES01",
        "c1ExternalTransactionId": "989898",
        "externalSourceId": "2250",
        "accountautopaydata":
        [
            {
                "accountAutoPayId": "7779143568"
            }
        ]
    }
}

Sample AutoPay Deletion Response for an AccountId in JSON Format

{
    "C1-DeleteAutoPayService":
    {
        {
            "AccountAutoPayId": "8889143891,12333344554"
        }
        "responseStatus": "Success",
        "responseMessage": "AutoPayIds are deleted successfully"
    }
}

Sample AutoPay Deletion Response for an AutoPayId in JSON Format

{
    "C1-DeleteAutoPayService":
    {
        {
            "AccountAutoPayId": "7779143568"
        }
        "responseStatus": "Success",
        "responseMessage": "AutoPayId is deleted successfully"
    }
}
Note: We have given the above sample to illustrate how the attribute value pairs should be structured while sending an auto pay deletion request from the external system. However, you should not seamlessly use this sample in your environment because the required pre-requisite data may not be available in your environment. In such case, the system will give erroneous results.

Related Topics

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