project resource type
Important: Currently all requests to API v2.0 must append $schemaversion=2.0 to the request URL to work properly. This is to uptake the new improved $metadata model avaliable from Business Central 17. An update will be applied shortly to apply the schemaversion automatically to API v2.0. For all other APIs $schemaversion=1.0 will be the default, unless specified in the request URL with $schemaversion=2.0. A solution is being worked on, where the schemaversion will be defined in the extension.
Represents a project in Dynamics 365 Business Central.
Note
For information about enabling APIs for Dynamics NAV 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. |
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. |
JSON representation
Here is a JSON representation of the project resource.
{
"id": "GUID",
"number": "string",
"displayName": "string"
}