POST api/Company/CreateB2CUserNote
Request Information
URI Parameters
None.
Body Parameters
B2CUserNoteDto| Name | Description | Type | Additional information |
|---|---|---|---|
| B2CUserNoteID | globally unique identifier |
None. |
|
| ObjectId | string |
None. |
|
| NoteBy | string |
None. |
|
| NoteDate | date |
None. |
|
| Note | string |
None. |
|
| Created | date |
None. |
|
| CreatedBy | string |
None. |
|
| Modified | date |
None. |
|
| ModifiedBy | string |
None. |
|
| CompanyID | integer |
None. |
|
| FileData | Collection of byte |
None. |
|
| FileName | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"B2CUserNoteID": "6ca52405-7204-408c-b4ab-67b1e6485563",
"ObjectId": "sample string 2",
"NoteBy": "sample string 3",
"NoteDate": "2026-07-01T17:17:42.3571214+00:00",
"Note": "sample string 4",
"Created": "2026-07-01T17:17:42.3571214+00:00",
"CreatedBy": "sample string 5",
"Modified": "2026-07-01T17:17:42.3571214+00:00",
"ModifiedBy": "sample string 6",
"CompanyID": 1,
"FileData": "QEA=",
"FileName": "sample string 7"
}
application/xml, text/xml
Sample:
<B2CUserNoteDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DH_Common.Mgt.Core.Dto"> <B2CUserNoteID>6ca52405-7204-408c-b4ab-67b1e6485563</B2CUserNoteID> <CompanyID>1</CompanyID> <Created>2026-07-01T17:17:42.3571214+00:00</Created> <CreatedBy>sample string 5</CreatedBy> <FileData>QEA=</FileData> <FileName>sample string 7</FileName> <Modified>2026-07-01T17:17:42.3571214+00:00</Modified> <ModifiedBy>sample string 6</ModifiedBy> <Note>sample string 4</Note> <NoteBy>sample string 3</NoteBy> <NoteDate>2026-07-01T17:17:42.3571214+00:00</NoteDate> <ObjectId>sample string 2</ObjectId> </B2CUserNoteDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
StandardReturn| Name | Description | Type | Additional information |
|---|---|---|---|
| APIStatus | integer |
None. |
|
| APIErrorMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"APIStatus": 1,
"APIErrorMessage": "sample string 2"
}
application/xml, text/xml
Sample:
<StandardReturn xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DH_Common.Mgt.Core.Dto"> <APIErrorMessage>sample string 2</APIErrorMessage> <APIStatus>1</APIStatus> </StandardReturn>