GET 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
Adjustment| 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": "2025-11-25T04:07:01.4414561Z",
"modifiedDate": "2025-11-25T04:07:01.4414561Z",
"createdBy": 0,
"processedBy": 0,
"isApproved": false,
"reference": "ADJ-1",
"branchId": 3,
"completedDate": "2025-11-25T00:00:00+13:00",
"adjustInAccountingSystem": null,
"adjustmentReason": null,
"alternativeAccountCode": null,
"productTotal": 0.0,
"source": "API",
"lineItems": [
{
"id": 1,
"createdDate": "2025-11-25T04:07:01.4414561Z",
"transactionId": 128,
"parentId": 0,
"productId": 1,
"productOptionId": 1,
"integrationRef": null,
"sort": 1,
"code": "",
"name": "V-NECK TSHIRT",
"option1": "Red",
"option2": "XXL",
"option3": "Yes",
"qty": 2.0,
"qtyAdjusted": 0.0,
"holdingQty": 0.0,
"account": null,
"unitCost": 0.0
}
]
}
