GET api/v1/Adjustments/{id}
Get an Adjustment.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
id |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
| Name | Description | Type | Additional information |
|---|---|---|---|
Id |
The unique Cin7 Id. |
integer |
None. |
CreatedDate |
Order created date |
date |
None. |
ModifiedDate |
Order last modified date |
date |
None. |
CreatedBy |
The ID for the User who created the Transaction. |
integer |
None. |
ProcessedBy |
The ID for the User who processed the Transaction. |
integer |
None. |
IsApproved |
Is Approved (default: true) |
boolean |
None. |
Reference |
A unique order reference (leave blank to auto-generate in an insert). |
string |
Max length: 20 |
BranchId |
Branch ID. |
integer |
None. |
CompletedDate |
Completed Date. |
date |
None. |
AdjustInAccountingSystem |
Date to adjust in Accounting system. |
date |
None. |
AdjustmentReason |
The reason for adjusting Stock. |
string |
None. |
AlternativeAccountCode |
Alternative GL Account. |
string |
None. |
ProductTotal |
Product Total. |
decimal number |
None. |
Source |
The source of the Transaction. |
string |
None. |
LineItems |
Line Items. |
Collection of AdjustmentItem |
None. |
Response Formats
application/json, text/json
{
"id": 1,
"createdDate": "2026-07-28T20:42:29.2866197Z",
"modifiedDate": "2026-07-28T20:42:29.2866259Z",
"createdBy": 1,
"processedBy": 1,
"isApproved": false,
"reference": "",
"branchId": 1,
"completedDate": "2026-07-28T20:42:29.286644Z",
"adjustInAccountingSystem": "2026-07-28T20:42:29.286646Z",
"adjustmentReason": "",
"alternativeAccountCode": "",
"productTotal": 0.0,
"source": "",
"lineItems": [
{
"id": 1,
"createdDate": "2026-07-28T20:42:29.2866673Z",
"transactionId": 1,
"parentId": 1,
"productId": 1,
"productOptionId": 1,
"integrationRef": "",
"sort": 1,
"code": "",
"name": "",
"option1": "",
"option2": "",
"option3": "",
"qty": 0.0,
"qtyAdjusted": 0.0,
"holdingQty": 0.0,
"account": "",
"unitCost": 0.0
}
]
}