POST v1/user/{userId}/communications/{id}/reply
Post reply to a communication
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
userId |
User id |
decimal number |
Required |
id |
Communication id |
decimal number |
Required |
Body Parameters
Communication thread object
AppCommunicationReplyRequestName | Description | Type | Additional information |
---|---|---|---|
Attachments |
Communication attachments |
Collection of AppAttachmentRequest |
None. |
Id | integer |
None. |
|
UserId | integer |
None. |
|
Message | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "Attachments": [ { "FileName": "sample string 1", "ContentType": "sample string 2", "FileContents": "sample string 3", "ImageType": "sample string 4" }, { "FileName": "sample string 1", "ContentType": "sample string 2", "FileContents": "sample string 3", "ImageType": "sample string 4" } ], "Id": 1, "UserId": 2, "Message": "sample string 3" }
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ApiResponseOfCommunicationThreadName | Description | Type | Additional information |
---|---|---|---|
Result | CommunicationThread |
None. |
|
Status | boolean |
None. |
|
Message | string |
None. |
|
Errors |
Errors occures while processing request |
Collection of ApiError |
None. |
Response Formats
application/json, text/json
Sample:
{ "Result": { "Id": 1, "UserId": 3, "UserName": "sample string 4", "Message": "sample string 5", "DateOfCreation": "2025-04-22T15:32:12.0183263+01:00", "Attachments": [ { "Id": 1, "FileName": "sample string 4", "ContentType": "sample string 6" }, { "Id": 1, "FileName": "sample string 4", "ContentType": "sample string 6" } ] }, "Status": true, "Message": "sample string 2", "Errors": [ { "Number": 1, "Message": "sample string 2", "Exception": { "ClassName": "System.Exception", "Message": null, "Data": null, "InnerException": null, "HelpURL": "sample string 1", "StackTraceString": null, "RemoteStackTraceString": null, "RemoteStackIndex": 0, "ExceptionMethod": null, "HResult": 3, "Source": "sample string 2", "WatsonBuckets": null } }, { "Number": 1, "Message": "sample string 2", "Exception": { "ClassName": "System.Exception", "Message": null, "Data": null, "InnerException": null, "HelpURL": "sample string 1", "StackTraceString": null, "RemoteStackTraceString": null, "RemoteStackIndex": 0, "ExceptionMethod": null, "HResult": 3, "Source": "sample string 2", "WatsonBuckets": null } } ] }