POST request/customer/{CustomerId}/note
Add note for a specific company
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | integer |
Required |
Body Parameters
NotesPost| Name | Description | Type | Additional information |
|---|---|---|---|
| Note | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"note": "sample string 1"
}
text/html
Sample:
{"note":"sample string 1"}
application/xml, text/xml
Sample:
<NotesPost xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyUtilityGeniusForBusiness.Api.Models.Default"> <Note>sample string 1</Note> </NotesPost>
Response Information
Resource Description
NotesPostResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": 1
}
text/html
Sample:
{"id":1}
application/xml, text/xml
Sample:
<NotesPostResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyUtilityGeniusForBusiness.Api.Models.Default"> <Id>1</Id> </NotesPostResponse>