Skip to main content
POST
/
v1
/
projects
Create a project
curl --request POST \
  --url https://api.domo.com/v1/projects \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Scrum Project",
  "members": [
    27,
    105
  ],
  "public": "TRUE"
}
'
{
  "id": "4",
  "name": "Scrum Project",
  "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.

Query Parameters

name
string
required

The name of the project

members
integer
required

Array of user ID's that will be assigned as members of the project

public
boolean
required

Whether or not the project should be publicly available to other Domo users

description
string

Description of the project

dueDate
string

Due date of the project

Body

application/json

The request body accepts a project object.

name
string
members
integer[]
public
string

Response

200 - application/json

Returns a project object when successful.

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