Mutations
/
create_timeline_item

create_timeline_item

Arguments

  • item_id
    ID!
    Required
    The item the timeline item will be created in.
  • user_id
    Int
    The user who created the timeline item. Only for account admins.
  • title
    String!
    Required
    The title of the timeline item.
  • timestamp
    ISO8601DateTime!
    Required
    The creation time of the event.
  • summary
    String
  • content
    String
  • location
    String
    Location field value
  • phone
    String
    Phone number field value
  • url
    String
    URL field value
  • time_range
    TimelineItemTimeRange
    The start and end time of the new timeline item.
  • custom_activity_id
    String!
    Required
    The id of the custom activity of the timeline item.
mutation create_timeline_item($item_id: ID!, $title: String!, $timestamp: ISO8601DateTime!, $custom_activity_id: String!) {
create_timeline_item(
item_id: $item_id
title: $title
timestamp: $timestamp
custom_activity_id: $custom_activity_id
) {
# create_timeline_item fields
}
}
create_updatedelete_timeline_item
Built with