Skip to main content
Version: v2

Create Annotation

Creates an annotation with the specified details.

Request Body required
    text string required

    Possible values: <= 200 characters

    The annotation's text.

    start_time ISO 8601 string optional

    Optional. The annotation's start time represented in ISO 8601 format. If not provided, the current Fullstory server time will be used.

    end_time ISO 8601 string optional

    Optional. The annotation's end time represented in ISO 8601 format. If not provided, it will be set to the annotation's start_time. If provided, must be after start_time.

    source string optional

    Possible values: <= 40 characters

    Optional. A string representing the source or creator of this annotation, which will be displayed on the annotation's visualization.

Responses
200

A successful response.


{
"text": "Code Release",
"start_time": "2024-06-29T14:23:23Z",
"end_time": "2024-06-29T14:23:23Z",
"source": "Deploy Pipeline"
}

Additional Information

Loading...