POST request/customer/{CustomerId}/site/{SiteId}/note
Add a customer site notes
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
CustomerId | integer |
Required |
|
SiteId | integer |
Required |
Body Parameters
NotesPostName | 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
NotesPostResponseName | 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>