Required role: | superadmin |
POST | /superadmin/company/{CompanyId}/comments | Adds a comment to the company. |
---|
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
CompanyId | query | Guid? | Yes | Enter the companyId for the customer |
Comment | body | string | Yes | |
CommentType | body | CommentsType | Yes |
Name | Value | |
---|---|---|
NormalComment | 1 | |
CallBackPhoneComment | 2 | |
CallBackEmailComment | 3 | |
CallBackMeetingBookedComment | 4 | |
CallBackNotInterestedComment | 5 |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
CompanyId | form | Guid? | No | |
Id | form | int | No | |
Comment | form | string | Yes | |
CommentTypeId | form | CommentsType | Yes | |
CommentType | form | CommentsTypeResponse | Yes | |
Updated | form | DateTime | No | The updated date |
Created | form | DateTime | No | The created date |
CreatedBy | form | string | No | The created by |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Id | form | int | No | |
Name | form | string | No | |
Description | form | string | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /superadmin/company/{CompanyId}/comments HTTP/1.1
Host: testapi.bokamera.se
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"CompanyId":"00000000-0000-0000-0000-000000000000","Comment":"String","CommentType":"NormalComment"}
HTTP/1.1 200 OK Content-Type: text/csv Content-Length: length {"CompanyId":"00000000-0000-0000-0000-000000000000","Id":0,"Comment":"String","CommentTypeId":"NormalComment","CommentType":{"Id":0,"Name":"String","Description":"String"},"CreatedBy":"String"}