TAG LINE
TAG LINE
SMALL TITLE

Payment / Dunning Rule

(API Version v6)


Represents user defined dunning rules.


What can you do with PaymentDunningRule?


Properties

Property Details
identity
READ-ONLY
"identity": 11
Type: Number
This is the unique numeric identifier for the PaymentDunningRule
ownerId
READ-ONLY
"ownerId": 9
Type: Number
Unique identifier for the associated Owner object.
ownerName
READ-ONLY
"ownerName": "Sample Name"
Type: String
The name of the object associated with the ownerId property.
name
"name": "Apply Late Fee"
Type: String
User defined name for the Dunning Rule.
isActive
"isActive": true
Type: Boolean
Whether or not this Dunning Rule is active and can be assigned to an AR Term.
minimumOverdue
"minimumOverdue": 1456
Type: Number
The minimum outstanding balance that needs to be met before the Dunning Rule takes effect.


Patch Types

The PATCH verb allows you to update an object. Just like a put, you only need to supply the fields that will be updated in the payload. However, a patch allows you to update many objects at once.

PATCH operations can be used as a standard API call. Below you will find the child objects that can be updated as part of PATCH operations for the PaymentDunningRule object.

Standard PATCH objects:

  • dunningRule - attach, detach, update

DataFlow PATCH objects:


End Points

DELETEPayment/DunningRule/{id}
Delete an instance of the PaymentDunningRule object. Upon successful delete, this API will return a record of all of the reelated objects deleted with this operation. The specifics on which objects have been deleted will depend on which related objects have been populated in the system.
{id}Unique identifier for the PaymentDunningRule object.
Delete an instance of the PaymentDunningRule object.
DELETE Payment/DunningRule/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "delete",
    "results": {
        "totalCount": 4,
        "items": [
            {
                "identity": 1,
                "action": "deleted",
                "dtoTypeKey": "paymentDunningRule"
            },
            {
                "lhsId": 2,
                "rhsId": 2,
                "action": "detached",
                "dtoTypeKey": "sampleObjectConnector"
            },
            {
                "foreignKeyIdentity": 2,
                "action": "deleted",
                "dtoTypeKey": "sampleObject"
            }
        ]
    }
}
GETPayment/DunningRule/
Retrieve all of the PaymentDunningRule objects.
Retrieve all of the PaymentDunningRule objects.
GET Payment/DunningRule/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "ownerId": 2,
            "ownerName": "Sample Text Data",
            "name": "Apply Late Fee",
            "isActive": true,
            "minimumOverdue": 1456
        }
    ]
}
GETPayment/DunningRule/Paged
Retrieve all of the PaymentDunningRule objects in a paged fashion. This endpoint implements pagination for its results. Individual pages can be requested to return a particular paged set in the list of results. To learn more, see details on working with paginated endpoints.
Retrieve all of the PaymentDunningRule objects in a paged fashion.
GET Payment/DunningRule/Paged
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "pagination": {
        "pageNumber": 1,
        "pageSize": 20,
        "excludeTotalCount": false
    },
    "pagedResults": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "ownerId": 27,
                "ownerName": "Sample Text Data",
                "name": "Apply Late Fee",
                "isActive": true,
                "minimumOverdue": 1456
            }
        ]
    }
}
GETPayment/DunningRule/Paged/Detail
Retrieve all of the PaymentDunningRule objects in a paged fashion with all object details. This endpoint returns additional detailed data related to this object. The specifics on which data is returned will depend on which related objects have been populated in the system.
Retrieve all of the PaymentDunningRule objects in a paged fashion with all object details.
GET Payment/DunningRule/Paged/Detail
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "pagination": {
        "pageNumber": 1,
        "pageSize": 20,
        "excludeTotalCount": false
    },
    "pagedResults": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "ownerId": 20,
                "ownerName": "Sample Text Data",
                "name": "Apply Late Fee",
                "isActive": true,
                "minimumOverdue": 1456,
                "details": {
                    "dunningRules": [
                        {
                            "identity": 11,
                            "paymentDunningRuleId": 99,
                            "paymentDunningRuleName": "Sample Text Data",
                            "isActive": true,
                            "days": 46,
                            "paymentActionTypeId": 24,
                            "paymentActionTypeName": "Sample Text Data",
                            "penaltyServiceId": 72,
                            "penaltyServiceName": "Sample Text Data",
                            "accountStatusTypeId": 90,
                            "accountStatusTypeName": "Sample Text Data",
                            "emailTemplateId": 53,
                            "emailTemplateName": "Sample Text Data",
                            "details": {
                                "dunningRulePenalties": [
                                    {
                                        "identity": 96,
                                        "dunningRuleId": 83,
                                        "currencyId": 1,
                                        "currencyName": "Sample Text Data",
                                        "amount": 66.56,
                                        "currencyCode": "Sample Text Data"
                                    }
                                ]
                            }
                        }
                    ]
                }
            }
        ]
    }
}
GETPayment/DunningRule/{id}
Retrieve an instance of the PaymentDunningRule object by its ID.
{id}Unique identifier for the PaymentDunningRule object.
Retrieve an instance of the PaymentDunningRule object by its ID.
GET Payment/DunningRule/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "ownerId": 3,
        "ownerName": "Sample Text Data",
        "name": "Apply Late Fee",
        "isActive": true,
        "minimumOverdue": 1456
    }
}
GETPayment/DunningRule/{id}/Detail
Retrieve deep detail of the PaymentDunningRule object by its ID. This endpoint returns additional detailed data related to this object. The specifics on which data is returned will depend on which related objects have been populated in the system.
{id}Unique identifier for the PaymentDunningRule object.
Retrieve deep detail of the PaymentDunningRule object by its ID.
GET Payment/DunningRule/{id}/Detail
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "ownerId": 14,
        "ownerName": "Sample Text Data",
        "name": "Apply Late Fee",
        "isActive": true,
        "minimumOverdue": 1456,
        "details": {
            "dunningRules": [
                {
                    "identity": 11,
                    "paymentDunningRuleId": 99,
                    "paymentDunningRuleName": "Sample Text Data",
                    "isActive": true,
                    "days": 46,
                    "paymentActionTypeId": 24,
                    "paymentActionTypeName": "Sample Text Data",
                    "penaltyServiceId": 72,
                    "penaltyServiceName": "Sample Text Data",
                    "accountStatusTypeId": 90,
                    "accountStatusTypeName": "Sample Text Data",
                    "emailTemplateId": 53,
                    "emailTemplateName": "Sample Text Data",
                    "details": {
                        "dunningRulePenalties": [
                            {
                                "identity": 96,
                                "dunningRuleId": 83,
                                "currencyId": 1,
                                "currencyName": "Sample Text Data",
                                "amount": 66.56,
                                "currencyCode": "Sample Text Data"
                            }
                        ]
                    }
                }
            ]
        }
    }
}
PATCHPayment/DunningRule/{id}
Update or Add the PaymentDunningRule object and optionally make changes to any child objects. Patch end points allow for adding/updating multiple related entities and the results of those changes will be reported in the response JSON payload in the items array.
{id}Unique identifier for the PaymentDunningRule object.
Update or Add the PaymentDunningRule object and optionally make changes to any child objects.
PATCH Payment/DunningRule/{id}

{
    "details": {},
    "paymentDunningRules": {
        "items": [
            {
                "patchType": "create",
                "patchClientId": 1,
                "name": "Apply Late Fee",
                "isActive": true,
                "minimumOverdue": 1456
            }
        ]
    }
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "patch",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "action": "created",
                "dtoTypeKey": "paymentDunningRule",
                "instance": {
                    "identity": 1,
                    "ownerId": 4,
                    "ownerName": "Sample Text Data",
                    "name": "Apply Late Fee",
                    "isActive": true,
                    "minimumOverdue": 1456
                }
            }
        ]
    }
}
POSTPayment/DunningRule/
Create a new instance of the PaymentDunningRule object.
Create a new instance of the PaymentDunningRule object.
POST Payment/DunningRule/

{
    "name": "Apply Late Fee",
    "isActive": true,
    "minimumOverdue": 1456
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "create",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "ownerId": 12,
                "ownerName": "Sample Text Data",
                "name": "Apply Late Fee",
                "isActive": true,
                "minimumOverdue": 1456
            }
        ]
    }
}
PUTPayment/DunningRule/{id}
Update an existing instance of the PaymentDunningRule object.
Update an existing instance of the PaymentDunningRule object.
PUT Payment/DunningRule/{id}

{
    "identity": 1,
    "name": "Apply Late Fee",
    "isActive": true,
    "minimumOverdue": 1456
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "update",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "ownerId": 2,
                "ownerName": "Sample Text Data",
                "name": "Apply Late Fee",
                "isActive": true,
                "minimumOverdue": 1456
            }
        ]
    }
}