Astravue API
  1. Projects
Astravue API
  • Welcome to the Astravue API
  • Auth
    • Get Access and Refresh Token
      POST
    • Refresh Access Token
      POST
  • Personal Tasks
    • Get task by ID
      GET
    • Update a task
      PUT
    • Delete a task
      DELETE
    • Get all tasks
      GET
    • Create a task
      POST
  • Spaces
    • Get space by ID
      GET
    • Update a space
      PUT
    • Delete a space
      DELETE
    • Get all spaces
      GET
    • Create a new space
      POST
  • Projects
    • Get project details by ID
      GET
    • Update a project
      PUT
    • Delete a project
      DELETE
    • Get all projects in a space
      GET
    • Create a new project
      POST
  • Project Tasks
    • Get a project task by ID
      GET
    • Update a project task
      PUT
    • Delete a project task
      DELETE
    • Get all tasks in a project
      GET
    • Create a project task
      POST
  • Task Timer
    • Get timers for a user in a task
      GET
    • Get active timers for a user
      GET
    • Update a timer
      PUT
    • Stop timer for a task
      PUT
    • Delete a timer entry
      DELETE
    • Start timer for a personal task
      POST
    • Add a time range entry for a personal task
      POST
    • Add manual time entry for a personal task
      POST
    • Start timer for a project task
      POST
    • Add range timer for a project task
      POST
    • Add manual time entry for a project task
      POST
  • Notifications and Mentions
    • Get all notifications and mentions
    • Mark notification/mentions as read
    • Delete multiple notifications
  1. Projects

Update a project

PUT
https://api.astravue.com/v1/spaces/{spaceId}/projects/{projectId}
Updates the details of a specific project by its ID within a given space.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://api.astravue.com/v1/spaces//projects/' \
--header 'X-Org-Id;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "Project Beta",
    "description": "Updated description of the project",
    "isPublic": false,
    "startDate": "2019-08-24T14:15:22Z",
    "dueDate": "2019-08-24T14:15:22Z",
    "status": "Completed",
    "priority": "Medium",
    "health": "At Risk",
    "projectTags": [
        "tag3",
        "tag4"
    ],
    "contact": 67890
}'
Response Response Example
{}

Request

Authorization
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
Path Params

Header Params

Body Params application/json

Examples

Responses

🟢200OK
application/hal+json
OK
Body

Previous
Get project details by ID
Next
Delete a project
Built with