Skip to main content
PUT
/
v1
/
projects
/
{PROJECT_ID}
Update a project
curl --request PUT \
  --url https://api.domo.com/v1/projects/{PROJECT_ID} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Scrum Project for Q4"
}
'
{
  "id": "4",
  "name": "Scrum Project for Q4",
  "members": [
    27,
    105
  ],
  "createdBy": 27,
  "createdDate": "2018-08-01T05:00:00Z",
  "public": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

PROJECT_ID
string
required

ID of the project

Query Parameters

name
string

Updates the name of the project

public
boolean

Updates whether or not the project is publicly available to Domo users

description
string

Updates the description of the project

dueDate
string

Updates the due date of the project

Body

application/json

The request body accepts a project object.

name
string

Response

200 - application/json

Returns the updated project object.

id
string
name
string
members
integer[]
createdBy
integer
createdDate
string
public
boolean