Changeset

Retrieve Changesets by project ID

Deprecated
GET
Retrieve Changesets by Project ID

Path parameters

projectIdstringRequired

Query parameters

versionintegerOptional
pageintegerOptional
takeintegerOptional

Response

This endpoint returns an object
error
objectOptional
If the API call failed, this will contain information about the error that occurred.
success
booleanOptional
True if the API call succeeded; false otherwise.
hasError
booleanOptional
True if the API call failed.
statusCode
enumOptional
The HTTP code of the response.
data
list of objectsOptional
If the API call succeeded, this will contain the results.
GET
$curl /api/data/projects/projectId/changesets \
> -H "Authorization: Bearer <token>"
Response
1{
2 "error": {
3 "technicalError": "technicalError",
4 "additionalErrors": [
5 "additionalErrors"
6 ],
7 "message": "message"
8 },
9 "success": true,
10 "hasError": true,
11 "statusCode": "Continue",
12 "data": [
13 {
14 "projectChangeSetId": 1,
15 "id": "id",
16 "projectId": "projectId",
17 "version": 1,
18 "createBy": "createBy",
19 "createDate": "2024-01-15T09:30:00Z",
20 "actions": "actions",
21 "changeSets": "changeSets",
22 "processDate": "2024-01-15T09:30:00Z",
23 "success": true,
24 "exception": "exception",
25 "clientId": "clientId",
26 "jsonData": "jsonData",
27 "isUndo": true,
28 "state": 1,
29 "businessId": "businessId"
30 }
31 ]
32}