Item Updated

Payload

The payload of this webhook request is an object.
idstringRequired

Unique identifier for the Item

cmsLocaleIdstringOptional

Identifier for the locale of the CMS item

lastPublishedstringOptional

The date the item was last published

lastUpdatedstringOptional

The date the item was last updated

createdOnstringOptional

The date the item was created

isArchivedbooleanOptionalDefaults to false

Boolean determining if the Item is set to archived

isDraftbooleanOptionalDefaults to false

Boolean determining if the Item is set to draft

fieldDataobjectOptional

Response

200
any
Return a 200 status to indicate that the data was received successfully.
Payload
1{
2 "id": "string",
3 "cmsLocaleId": "string",
4 "lastPublished": "string",
5 "lastUpdated": "string",
6 "createdOn": "string",
7 "isArchived": true,
8 "isDraft": true,
9 "fieldData": {
10 "name": "string",
11 "slug": "string"
12 }
13}