Get Overlay Modifications
GET/v1/product/:product_id/overlay/:overlay_id/modification
Get all modifications for an overlay
Request
Path Parameters
The product ID
The overlay ID
Query Parameters
Filter by name
Filter by description
Field to sort by
Possible values: Value must match regular expression ^(asc|desc)$
Default value: asc
Sort order
Default value: 0
Pagination cursor
Default value: 10
Page size
Responses
- 200
- 422
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data
object[]
required
List of modifications
Account ID of the user who last modified the resource
Timestamp of when the resource was last modified
Timestamp of when this resource was created
Unique identifier for the target
Type of entity being modified
Name of the field being modified
Boolean value modification
String value modification
Integer value modification
Float value modification
Datetime value modification
Name of the modification
Description of the modification
ID of the sandbox of which the modification originated
Default value: [object Object]
ID of the parent overlay
Unique identifier for the modification
Unique product identifier for the modification
page_meta
object
required
Metadata for pagination.
Cursor to designate where you are in iterating through values. Start with '0', and pass this on subsequent calls to continue iteration
Default value: 50
The maximum number of elements to be returned per call
Default value: 0
Total number of entities
{
"data": [
{
"last_modified_account_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"last_modified_timestamp": "2024-07-29T15:51:28.071Z",
"created_timestamp": "2024-07-29T15:51:28.071Z",
"target_id": "string",
"target_type": "string",
"field_name": "string",
"value_boolean": true,
"value_string": "string",
"value_integer": 0,
"value_float": 0,
"value_datetime": "2024-07-29T15:51:28.071Z",
"name": "string",
"description": "string",
"reference_sandbox_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"model_config": {},
"overlay_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"modification_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"product_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
],
"page_meta": {
"cursor": "string",
"page_size": 50,
"total": 0
}
}
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
- MOD1
- MOD2
]
]
detail
object[]
loc
object[]
required
anyOf
string
integer
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}