added

New `create_update` arguments

🏷️ API version: 2025-10

We added two new arguments to the create_update mutation:

  • original_creation_date: The update's original creation date. Useful in scenarios like account recovery where preserving the original creation date is necessary.
  • use_app_info: Whether to use the app's details as the creator of the update.
mutation {
  create_update (item_id: 9876543210, body: "This update will mention user 1234567890 on an item", mentions_list: [{id: 1234567890, type: User}], use_app_info: true, original_creation_date: "01-03-2025") {
    id
  }
}