Skip to main content
GET
/
v1
/
projects
/
{PROJECT_ID}
Retrieve individual project
curl --request GET \
  --url https://api.domo.com/v1/projects/{PROJECT_ID} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3",
  "name": "Agile Project",
  "members": [
    27,
    35,
    102
  ],
  "createdBy": 27,
  "createdDate": "2018-08-01T01:00:00Z",
  "public": false
}

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

Response

200 - application/json

Returns a project object.

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