Project Object

Description

Details for a project.

Properties

createdDate

Date, in ISO 8601 format, at which the project was created.

Type: string

isDefault

Indicates whether the project is the default project for the account.

Type: boolean

lastModifiedDate

Date, in ISO 8601 format, at which the project was last modified.

Type: string

lastModifiedBy

User that last modified the project details (name, etc.)

Type: string

name

Name of the project.

Type: string

notifications

Notification settings for the project.

Type: ProjectNotificationsSettings object

projectId

ID of the project.

Type: string

reportEmails

List of email addresses used to send action reports.

Type: Array of string

rss

RSS settings for the project.

Type: ProjectRssFeed object

status

Status of the project.

Type: string

Valid Values:

  • active

  • archived

Sample JSON

{
    "projectId": "proj-12345678",
    "name": "Customer 1",
    "status": "active",
    
    "isDefault": false,
    
    "createdDate": "2019-05-05T12:00:00:Z",
    "lastModifiedDate": "2020-01-21T14:00:00:Z",
    "lastModifiedBy": "u-12345678",
    
    "notifications": {
        "accountNotifications": "allow"
    },
    "rss": {
        "status": "not-created"
    },
    "reportEmails": [
        "user1@example.com",
        "user2@example.com"
    ]
}

Last updated