Intervals API Resource:

milestonenote

The base URL for this resource is located at
https://api.myintervals.com/milestonenote/

Collection

Allowed HTTP Methods
MethodGroup Access
GETAdministrator, Manager, Resource, Executive
Allowed Filters
Filter NameRequired?ExpectsDefaultDescription
milestoneid yes integer
offset no integer Return milestonenotes starting from the nth milestonenote.
limit no integer 10 Sets a limit to the amount of milestonenotes returned in the response.

1 Indicates that multiple values are allowed, in CSV format (e.g. "3,5,11,19").
2 This field accepts HTML, but certain HTML elements may be stripped out.

Examples

To filter the list based on certain parameters:

GET /milestonenote/?limit={value}

Note: You can string together multiple filters.

Member

Allowed HTTP Methods
MethodGroup Access
GETAdministrator, Manager, Resource, Executive
DELETEAdministrator
POSTAdministrator, Manager, Resource, Executive
PUTAdministrator
Settable Fields for PUT and POST Requests
Field NameRequired?ExpectsDefaultDescription
milestoneid yes integer The ID of the milestone this note belongs to.
note yes html The body of the milestone note.
public yes boolean f If true, this task note will be visible to executive users. For executive users, all notes created are public.

string (xxx) indicates a string with a maximum length of xxx characters.

Response Fields

The fields below are returned in GET responses. Boolean values are "t" / "f" strings. Numeric IDs and floats are returned as strings. Nullable fields may be JSON null.

Response Fields
Field NameNullableDescription
id no Unique identifier for the milestone note
milestoneid no ID of the parent milestone
title no Short title or event label (e.g. Milestone updated)
date no When the note or event was recorded (UTC, YYYY-MM-DD HH:MM:SS)
authorid no ID of the person who created the note
note yes Free-form note body (may be empty for system-generated rows)
public no Whether the note is visible to Executive-level users ("t"/"f")
actions yes Rendered HTML summary of actions (empty when none)
state yes Human-readable description of what changed (may span multiple lines)
meta yes Additional metadata (often empty)
author no Full name of the note author
authorlocalid no Author’s person local ID in the Person app

When retrieving a collection (GET /milestonenote/), the response envelope includes: personid (authenticated user's ID), status ("OK"), code (200), listcount (total matching records before limit/offset), and milestonenote (array of result objects). Defaults, no cap on limit, and how to paginate using listcount are described in the API Introduction (Pagination).

Examples

To retrieve one member resource:

GET /milestonenote/{id}/

Assuming no errors, the server will respond with 200 OK and the object requested.

To delete a particular member resource:

DELETE /milestonenote/{id}/

Assuming no errors, the server will respond with 200 OK.

To create a new member resource:

POST /milestonenote/
{
    "milestoneid": value,
    "note": value,
    "public": value
}

Assuming no errors, the server will respond with 201 Created and the newly-created element. This will allow you to get the id of the item you just created and verify the field values. Note: Only required fields were listed here. The entire list of possible fields is above.

To update a member resource:

PUT /milestonenote/{id}/
{
    "milestoneid": value,
    "public": value
}

Assuming no errors, the server will respond with 202 Accepted and the entire element. This will allow you to verify the field values.

Start tracking time today

Join 5,000+ companies spending their time wisely with Intervals.

Try Intervals free