Milestones
Bnder API documentation for Milestones. Read the API Overview to get started and learn more.
Creates a new milestone
Creates a new milestone in the specified project
POST /guilds/guildId/projects/projectId/milestones
Parameters
guildId The id of a discord guild
projectId The ID of the project
Request body
Request Field | Type | Description |
---|---|---|
name | string | The name of the milestone |
due_date | string | The due date of the milestone |
Responses 201 Response (): Empty response.
Updates a milestone
Updates a milestone in the specified project
PUT /guilds/guildId/projects/projectId/milestones/milestoneId
Parameters
guildId The id of a discord guild
projectId The ID of the project
milestoneId The ID of the milestone
Request body
Request Field | Type | Description |
---|---|---|
name | string | The name of the milestone |
due_date | string | The due date of the milestone |
Responses 200 Response (Milestone updated):
Response Field | Type | Description |
---|---|---|
name | string | The name of the milestone |
due_date | string | The due date of the milestone |
Deletes a milestone
Deletes a milestone in the specified project
DELETE /guilds/guildId/projects/projectId/milestones/milestoneId
Parameters
guildId The id of a discord guild
projectId The ID of the project
milestoneId The ID of the milestone
Responses
204 Response (): Empty response.