EaserixDocs
DevelopersAPI referenceTasksCycles

Update a cycle

Partial update. Omitted fields keep their stored value — in particular an omitted number does NOT renumber the cycle. Send an empty string for startsAt/endsAt to clear the date; an unparseable date is a 400, not a silent null. endsAt must fall on or after startsAt once the patch is merged with the stored row. A name another cycle in the same team already uses is a 409; "" clears the name and never collides. A cycle's team is immutable, so teamId is not accepted. Cycles in another org read as 404.

View as Markdown
PATCH
/v1/cycles/{id}
AuthorizationBearer <token>

In: header

Path Parameters

id*string
Formatuuid

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X PATCH "https://example.com/v1/cycles/497f6eca-6276-4993-bfeb-53cbbbba6f08" \  -H "Content-Type: application/json" \  -d '{}'
{  "cycle": {    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",    "teamId": "a4ede8ba-7c0a-4485-8763-cbd9b282fbec",    "number": 0,    "name": "string",    "startsAt": "2019-08-24",    "endsAt": "2019-08-24"  }}