TAG LINE
TAG LINE
SMALL TITLE
Represents user defined dunning rules.
identity READ-ONLY | "identity": 19 Type: Number This is the unique numeric identifier for the PaymentDunningRule |
ownerId READ-ONLY | "ownerId": 14 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. |
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:
DataFlow PATCH objects:
DELETE | Payment/DunningRule/{id} |
Delete an instance of the PaymentDunningRule object. Upon successful delete, this API will return a record of all of the related 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} 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" } ] } } |
GET | Payment/DunningRule/ |
Retrieve all of the PaymentDunningRule objects. | |
Retrieve all of the PaymentDunningRule objects. GET Payment/DunningRule/ HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "totalCount": 1, "items": [ { "identity": 1, "ownerId": 17, "ownerName": "Sample Text Data", "name": "Apply Late Fee", "isActive": true, "minimumOverdue": 1456 } ] } |
GET | Payment/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 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": 17, "ownerName": "Sample Text Data", "name": "Apply Late Fee", "isActive": true, "minimumOverdue": 1456 } ] } } |
GET | Payment/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 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": 18, "ownerName": "Sample Text Data", "name": "Apply Late Fee", "isActive": true, "minimumOverdue": 1456, "details": { "dunningRules": [ { "identity": 2, "paymentDunningRuleId": 86, "paymentDunningRuleName": "Sample Text Data", "isActive": true, "days": 6, "paymentActionTypeId": 37, "paymentActionTypeName": "Sample Text Data", "penaltyServiceId": 75, "penaltyServiceName": "Sample Text Data", "accountStatusTypeId": 43, "accountStatusTypeName": "Sample Text Data", "emailTemplateId": 28, "emailTemplateName": "Sample Text Data", "autoRescue": true, "maxRetryDays": 80, "details": { "dunningRulePenalties": [ { "identity": 15, "dunningRuleId": 75, "currencyId": 95, "currencyName": "Sample Text Data", "amount": 58.61, "currencyCode": "Sample Text Data" } ], "webhookConfigurations": [ { "identity": 72, "name": "Sample Text Data", "url": "Sample Text Data", "requestVerb": "Sample Text Data", "webhookTemplateId": 80, "webhookTemplateName": "Sample Text Data", "keyValuePairAuthorizationTokenKey": "Sample Text Data", "keyValuePairAuthorizationTokenValue": "Sample Text Data", "eventSubscriptionId": 91, "eventSubscriptionName": "Sample Text Data", "webhookAuthorizationTypeId": 61, "webhookAuthorizationTypeName": "Sample Text Data", "oAuthUsername": "Sample Text Data", "oAuthPassword": "Sample Text Data", "oAuthClientId": "Sample Text Data", "oAuthAuthorizationURL": "Sample Text Data", "hasCredentialsSet": true, "webhookFormatTypeId": 58, "webhookFormatTypeName": "Sample Text Data", "oAuthClientSecret": "Sample Text Data" } ] } } ] } } ] } } |
GET | Payment/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} HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "instance": { "identity": 1, "ownerId": 8, "ownerName": "Sample Text Data", "name": "Apply Late Fee", "isActive": true, "minimumOverdue": 1456 } } |
GET | Payment/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 HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "instance": { "identity": 1, "ownerId": 8, "ownerName": "Sample Text Data", "name": "Apply Late Fee", "isActive": true, "minimumOverdue": 1456, "details": { "dunningRules": [ { "identity": 2, "paymentDunningRuleId": 86, "paymentDunningRuleName": "Sample Text Data", "isActive": true, "days": 6, "paymentActionTypeId": 37, "paymentActionTypeName": "Sample Text Data", "penaltyServiceId": 75, "penaltyServiceName": "Sample Text Data", "accountStatusTypeId": 43, "accountStatusTypeName": "Sample Text Data", "emailTemplateId": 28, "emailTemplateName": "Sample Text Data", "autoRescue": true, "maxRetryDays": 80, "details": { "dunningRulePenalties": [ { "identity": 15, "dunningRuleId": 75, "currencyId": 95, "currencyName": "Sample Text Data", "amount": 58.61, "currencyCode": "Sample Text Data" } ], "webhookConfigurations": [ { "identity": 72, "name": "Sample Text Data", "url": "Sample Text Data", "requestVerb": "Sample Text Data", "webhookTemplateId": 80, "webhookTemplateName": "Sample Text Data", "keyValuePairAuthorizationTokenKey": "Sample Text Data", "keyValuePairAuthorizationTokenValue": "Sample Text Data", "eventSubscriptionId": 91, "eventSubscriptionName": "Sample Text Data", "webhookAuthorizationTypeId": 61, "webhookAuthorizationTypeName": "Sample Text Data", "oAuthUsername": "Sample Text Data", "oAuthPassword": "Sample Text Data", "oAuthClientId": "Sample Text Data", "oAuthAuthorizationURL": "Sample Text Data", "hasCredentialsSet": true, "webhookFormatTypeId": 58, "webhookFormatTypeName": "Sample Text Data", "oAuthClientSecret": "Sample Text Data" } ] } } ] } } } |
PATCH | Payment/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 } ] } } 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": 25, "ownerName": "Sample Text Data", "name": "Apply Late Fee", "isActive": true, "minimumOverdue": 1456 } } ] } } |
POST | Payment/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 } HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "type": "create", "results": { "totalCount": 1, "items": [ { "identity": 1, "ownerId": 3, "ownerName": "Sample Text Data", "name": "Apply Late Fee", "isActive": true, "minimumOverdue": 1456 } ] } } |
PUT | Payment/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 } HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "type": "update", "results": { "totalCount": 1, "items": [ { "identity": 1, "ownerId": 0, "ownerName": "Sample Text Data", "name": "Apply Late Fee", "isActive": true, "minimumOverdue": 1456 } ] } } |