TAG LINE
TAG LINE
SMALL TITLE
This entity is assigned to an Account to determine which payment terms and dunning rules should apply.
identity READ-ONLY | "identity": 14 Type: Number This is the unique numeric identifier for the AccountsReceivableTerms |
ownerId READ-ONLY | "ownerId": 16 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": 2 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": 12 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. |
DELETE | AccountsReceivable/Terms/{id} |
Delete an instance of the AccountsReceivableTerms 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 AccountsReceivableTerms object. |
Delete an instance of the AccountsReceivableTerms object. DELETE AccountsReceivable/Terms/{id} 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" } ] } } |
GET | AccountsReceivable/Terms/ |
Retrieve all of the AccountsReceivableTerms objects. | |
Retrieve all of the AccountsReceivableTerms objects. GET AccountsReceivable/Terms/ HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "totalCount": 1, "items": [ { "identity": 1, "ownerId": 7, "ownerName": "Sample Text Data", "name": "Net 30", "paymentTermId": 10, "paymentTermName": "Sample Text Data", "paymentDunningRuleId": 20, "paymentDunningRuleName": "Sample Text Data", "isDefault": true } ] } |
GET | AccountsReceivable/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 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": 2, "paymentTermName": "Sample Text Data", "paymentDunningRuleId": 15, "paymentDunningRuleName": "Sample Text Data", "isDefault": true } ] } } |
GET | AccountsReceivable/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} HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "instance": { "identity": 1, "ownerId": 6, "ownerName": "Sample Text Data", "name": "Net 30", "paymentTermId": 22, "paymentTermName": "Sample Text Data", "paymentDunningRuleId": 22, "paymentDunningRuleName": "Sample Text Data", "isDefault": true } } |
POST | AccountsReceivable/Terms/ |
Create a new instance of the AccountsReceivableTerms object. | |
Create a new instance of the AccountsReceivableTerms object. POST AccountsReceivable/Terms/ { "name": "Net 30", "paymentTermId": 16, "paymentDunningRuleId": 26, "isDefault": true } HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "type": "create", "results": { "totalCount": 1, "items": [ { "identity": 1, "ownerId": 5, "ownerName": "Sample Text Data", "name": "Net 30", "paymentTermId": 4, "paymentTermName": "Sample Text Data", "paymentDunningRuleId": 26, "paymentDunningRuleName": "Sample Text Data", "isDefault": true } ] } } |
PUT | AccountsReceivable/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": 21, "paymentDunningRuleId": 21, "isDefault": true } HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "type": "update", "results": { "totalCount": 1, "items": [ { "identity": 1, "ownerId": 7, "ownerName": "Sample Text Data", "name": "Net 30", "paymentTermId": 18, "paymentTermName": "Sample Text Data", "paymentDunningRuleId": 17, "paymentDunningRuleName": "Sample Text Data", "isDefault": true } ] } } |