ModifyProjectReportEmails Method

Description

Modifies the report emails for a project.

HTTP Request

PUT https://api.skeddly.com/api/Projects/<id>/ReportEmails

URL Parameters

Id

ID of the project.

Type: string

Required: Yes

Body

The body is a JSON structure with the following properties.

reportEmails

Emails to assign to the project

Type: Array of string

Required: Yes

Returns

A Project object.

Sample Request

PUT /api/Projects/proj-00000001/ReportEmails HTTP/1.1
Host: api.skeddly.com
Authorization: AccessKey <api key>
Content-Type: application/json

{
    "reportEmails": [
        "user1@example.com"
    ]
}

Sample Response

{
    "projectId": "proj-12345678",
    "name": "My Project",
    "status": "active",
    
    "isDefault": false,
    
    "createdDate": "2022-12-26T12:00:00:Z",
    "lastModifiedDate": "2023-01-26T12:00:00:Z",
    "lastModifiedBy": "u-12345678",
    
    "reportEmails": [
        "user1@example.com"
    ]
}

Last updated