Represents a project in Business Central.
Note
For information about enabling APIs for Business Central see Enabling the APIs for Dynamics 365 Business Central.
Methods
| Method | Return Type | Description | 
|---|---|---|
| GET project | project | Gets a project object. | 
| DELETE project | none | Deletes a project object. | 
| POST project | project | Creates a project object. | 
| PATCH project | project | Updates a project object. | 
Navigation
| Navigation | Return Type | Description | 
|---|---|---|
| documentAttachments | documentAttachments | Gets the documentattachments of the project. | 
Properties
| Property | Type | Description | 
|---|---|---|
| id | GUID | The unique ID of the project. Non-editable. | 
| number | string | Specifies the number of the project. | 
| displayName | string | Specifies the project's name. This name will appear on all sales documents for the project. | 
| lastModifiedDateTime | datetime | The last datetime the project was modified. Read-Only. | 
JSON representation
Here's a JSON representation of the project resource.
{
    "id": "GUID",
    "number": "string",
    "displayName": "string",
    "lastModifiedDateTime": "datetime"
}