TAG LINE
TAG LINE
SMALL TITLE

Accounts Receivable / Terms

(API Version v5)


This entity is assigned to an Account to determine which payment terms and dunning rules should apply.


What can you do with AccountsReceivableTerms?


Properties

Property Details
identity
READ-ONLY
"identity": 0
Type: Number
This is the unique numeric identifier for the AccountsReceivableTerms
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": "Net 30"
Type: String
User defined name given to the Terms.
paymentTermId
"paymentTermId": 8
Type: Number
Unique identifier for the associated PaymentTerm object.
paymentTermName
"paymentTermName": "Sample Name"
Type: String
The name of the object associated with the paymentTermId property.
paymentDunningRuleId
"paymentDunningRuleId": 10
Type: Number
Unique identifier for the associated PaymentDunningRule object.
paymentDunningRuleName
"paymentDunningRuleName": "Sample Name"
Type: String
The name of the object associated with the paymentDunningRuleId property.
isDefault
"isDefault": true
Type: Boolean
Whether or not this Term is considered the default one used on data entry.


End Points

DELETEAccountsReceivable/Terms/{id}
Delete an instance of the AccountsReceivableTerms 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 AccountsReceivableTerms object.
Delete an instance of the AccountsReceivableTerms object.
DELETE AccountsReceivable/Terms/{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": "accountsReceivableTerms"
            },
            {
                "lhsId": 2,
                "rhsId": 2,
                "action": "detached",
                "dtoTypeKey": "sampleObjectConnector"
            },
            {
                "foreignKeyIdentity": 2,
                "action": "deleted",
                "dtoTypeKey": "sampleObject"
            }
        ]
    }
}
GETAccountsReceivable/Terms/
Retrieve all of the AccountsReceivableTerms objects.
Retrieve all of the AccountsReceivableTerms objects.
GET AccountsReceivable/Terms/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "ownerId": 18,
            "ownerName": "Sample Text Data",
            "name": "Net 30",
            "paymentTermId": 27,
            "paymentTermName": "Sample Text Data",
            "paymentDunningRuleId": 17,
            "paymentDunningRuleName": "Sample Text Data",
            "isDefault": true
        }
    ]
}
GETAccountsReceivable/Terms/Paged
Retrieve all of the AccountsReceivableTerms 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 AccountsReceivableTerms objects in a paged fashion.
GET AccountsReceivable/Terms/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": 24,
                "ownerName": "Sample Text Data",
                "name": "Net 30",
                "paymentTermId": 1,
                "paymentTermName": "Sample Text Data",
                "paymentDunningRuleId": 26,
                "paymentDunningRuleName": "Sample Text Data",
                "isDefault": true
            }
        ]
    }
}
GETAccountsReceivable/Terms/{id}
Retrieve an instance of the AccountsReceivableTerms object by its ID.
{id}Unique identifier for the AccountsReceivableTerms object.
Retrieve an instance of the AccountsReceivableTerms object by its ID.
GET AccountsReceivable/Terms/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "ownerId": 2,
        "ownerName": "Sample Text Data",
        "name": "Net 30",
        "paymentTermId": 4,
        "paymentTermName": "Sample Text Data",
        "paymentDunningRuleId": 23,
        "paymentDunningRuleName": "Sample Text Data",
        "isDefault": true
    }
}
POSTAccountsReceivable/Terms/
Create a new instance of the AccountsReceivableTerms object.
Create a new instance of the AccountsReceivableTerms object.
POST AccountsReceivable/Terms/

{
    "name": "Net 30",
    "paymentTermId": 6,
    "paymentDunningRuleId": 13,
    "isDefault": true
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "create",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "ownerId": 18,
                "ownerName": "Sample Text Data",
                "name": "Net 30",
                "paymentTermId": 11,
                "paymentTermName": "Sample Text Data",
                "paymentDunningRuleId": 11,
                "paymentDunningRuleName": "Sample Text Data",
                "isDefault": true
            }
        ]
    }
}
PUTAccountsReceivable/Terms/{id}
Update an existing instance of the AccountsReceivableTerms object.
Update an existing instance of the AccountsReceivableTerms object.
PUT AccountsReceivable/Terms/{id}

{
    "identity": 1,
    "name": "Net 30",
    "paymentTermId": 25,
    "paymentDunningRuleId": 13,
    "isDefault": true
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "update",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "ownerId": 24,
                "ownerName": "Sample Text Data",
                "name": "Net 30",
                "paymentTermId": 27,
                "paymentTermName": "Sample Text Data",
                "paymentDunningRuleId": 25,
                "paymentDunningRuleName": "Sample Text Data",
                "isDefault": true
            }
        ]
    }
}