Versions
Create a new Settings css-override
success
POST /api/1.0/customize-ui HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 43
{
"variables": "text",
"sansSerifFont": "text"
}
success
{
"key": "text",
"config": [
{}
],
"name": "text",
"helper": "text",
"group": "text",
"format": "text",
"hidden": true,
"readonly": true,
"variables": "text",
"sansSerifFont": "text",
"id": "text",
"created_at": "2025-08-31T05:39:12.688Z",
"updated_at": "2025-08-31T05:39:12.688Z"
}
Get the list of records of Version History
Filter results by string. Searches Name, Description, and Status. Status must match exactly. Others can be a substring.
Field to order results by
asc
Possible values: 10
Include data from related models in payload. Comma separated list.
""
list of Version History
GET /api/1.0/version_histories HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
list of Version History
{
"data": [
{
"versionable_id": 1,
"versionable_type": "text",
"name": "text",
"subject": "text",
"description": "text",
"status": "ACTIVE",
"created_at": "2025-08-31T05:39:12.688Z",
"updated_at": "2025-08-31T05:39:12.688Z"
}
],
"meta": {
"filter": "text",
"sort_by": "text",
"sort_order": "asc",
"count": 1,
"total_pages": 1,
"current_page": 1,
"form": 1,
"last_page": 1,
"path": "text",
"per_page": 1,
"to": 1,
"total": 1
}
}
Create a new Version History.
Class VersionHistoryCollection
success
POST /api/1.0/version_histories HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 116
{
"versionable_id": 1,
"versionable_type": "text",
"name": "text",
"subject": "text",
"description": "text",
"status": "ACTIVE"
}
success
{
"versionable_id": 1,
"versionable_type": "text",
"name": "text",
"subject": "text",
"description": "text",
"status": "ACTIVE",
"created_at": "2025-08-31T05:39:12.688Z",
"updated_at": "2025-08-31T05:39:12.688Z"
}
Get a single Version History.
ID of Version History to return
Successfully found the Version History
GET /api/1.0/version_histories/{version_history_id} HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
Successfully found the Version History
{
"versionable_id": 1,
"versionable_type": "text",
"name": "text",
"subject": "text",
"description": "text",
"status": "ACTIVE",
"created_at": "2025-08-31T05:39:12.688Z",
"updated_at": "2025-08-31T05:39:12.688Z"
}
Update a Version History.
ID of Version History to return
Class VersionHistoryCollection
success
PUT /api/1.0/version_histories/{version_history_id} HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 116
{
"versionable_id": 1,
"versionable_type": "text",
"name": "text",
"subject": "text",
"description": "text",
"status": "ACTIVE"
}
success
{
"versionable_id": 1,
"versionable_type": "text",
"name": "text",
"subject": "text",
"description": "text",
"status": "ACTIVE",
"created_at": "2025-08-31T05:39:12.688Z",
"updated_at": "2025-08-31T05:39:12.688Z"
}
Delete a Version History.
ID of Version History to return
success
DELETE /api/1.0/version_histories/{version_history_id} HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
success
{
"versionable_id": 1,
"versionable_type": "text",
"name": "text",
"subject": "text",
"description": "text",
"status": "ACTIVE",
"created_at": "2025-08-31T05:39:12.688Z",
"updated_at": "2025-08-31T05:39:12.688Z"
}
Clone a new Version History.
Class VersionHistoryCollection
success
POST /api/1.0/version_histories/clone HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 116
{
"versionable_id": 1,
"versionable_type": "text",
"name": "text",
"subject": "text",
"description": "text",
"status": "ACTIVE"
}
success
{
"versionable_id": 1,
"versionable_type": "text",
"name": "text",
"subject": "text",
"description": "text",
"status": "ACTIVE",
"created_at": "2025-08-31T05:39:12.688Z",
"updated_at": "2025-08-31T05:39:12.688Z"
}
Last updated