PUT api/Notes
Request Information
URI Parameters
None.
Body Parameters
Note| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| CompanyId | integer |
None. |
|
| Active | boolean |
None. |
|
| Title | string |
None. |
|
| Owner | string |
None. |
|
| CreatedDate | date |
None. |
|
| EditedDate | date |
None. |
|
| Content | string |
None. |
|
| Pictures | Collection of Picture |
None. |
|
| ProjectId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "2c4aa754-351e-4651-b66c-5f50fc7d145b",
"CompanyId": 2,
"Active": true,
"Title": "sample string 4",
"Owner": "sample string 5",
"CreatedDate": "2026-06-27T14:38:42.3227955",
"EditedDate": "2026-06-27T14:38:42.3227955",
"Content": "sample string 8",
"Pictures": [
{
"Id": "a148afa4-7459-4ffa-b1dc-0a5b12c2269c",
"Url": "sample string 2",
"Comment": "sample string 3",
"NoteId": "f574bdc2-1f66-4788-897f-eee1d777d081",
"Title": "sample string 5"
},
{
"Id": "a148afa4-7459-4ffa-b1dc-0a5b12c2269c",
"Url": "sample string 2",
"Comment": "sample string 3",
"NoteId": "f574bdc2-1f66-4788-897f-eee1d777d081",
"Title": "sample string 5"
}
],
"ProjectId": 9
}
application/xml, text/xml
Sample:
<Note xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fagtorget.DTO.Notes">
<Active>true</Active>
<CompanyId>2</CompanyId>
<Content>sample string 8</Content>
<CreatedDate>2026-06-27T14:38:42.3227955+02:00</CreatedDate>
<EditedDate>2026-06-27T14:38:42.3227955+02:00</EditedDate>
<Id>2c4aa754-351e-4651-b66c-5f50fc7d145b</Id>
<Owner>sample string 5</Owner>
<Pictures>
<Picture>
<Comment>sample string 3</Comment>
<Id>a148afa4-7459-4ffa-b1dc-0a5b12c2269c</Id>
<NoteId>f574bdc2-1f66-4788-897f-eee1d777d081</NoteId>
<Title>sample string 5</Title>
<Url>sample string 2</Url>
</Picture>
<Picture>
<Comment>sample string 3</Comment>
<Id>a148afa4-7459-4ffa-b1dc-0a5b12c2269c</Id>
<NoteId>f574bdc2-1f66-4788-897f-eee1d777d081</NoteId>
<Title>sample string 5</Title>
<Url>sample string 2</Url>
</Picture>
</Pictures>
<ProjectId>9</ProjectId>
<Title>sample string 4</Title>
</Note>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
None.