GET v1/user/{userId}/communications/users

Get list of all users whom the current user can start communication

Request Information

URI Parameters

NameDescriptionTypeAdditional information
userId

User id

decimal number

Required

Body Parameters

None.

Response Information

Resource Description

ApiResponseListOfAppCommunicationUser
NameDescriptionTypeAdditional information
Count

integer

None.

Result

Collection of AppCommunicationUser

None.

Status

boolean

None.

Message

string

None.

Errors

Errors occures while processing request

Collection of ApiError

None.

Response Formats

application/json, text/json

Sample:
{
  "Count": 1,
  "Result": [
    {
      "Id": 1.0,
      "Name": "sample string 2",
      "Type": "sample string 3"
    },
    {
      "Id": 1.0,
      "Name": "sample string 2",
      "Type": "sample string 3"
    }
  ],
  "Status": true,
  "Message": "sample string 3",
  "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
      }
    }
  ]
}