POST api/MobileApp/GetSIPUsersList

Request Information

URI Parameters

None.

Body Parameters

SIPUserListRequestModel
NameDescriptionTypeAdditional information
PhoneNumber

string

None.

Pin

string

None.

ContactList

Collection of string

None.

DeviceId

string

None.

DeviceType

string

None.

DeviceName

string

None.

DeviceModel

string

None.

AppVersion

string

None.

AppType

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PhoneNumber": "sample string 1",
  "Pin": "sample string 2",
  "ContactList": [
    "sample string 1",
    "sample string 2"
  ],
  "DeviceId": "sample string 3",
  "DeviceType": "sample string 4",
  "DeviceName": "sample string 5",
  "DeviceModel": "sample string 6",
  "AppVersion": "sample string 7",
  "AppType": "sample string 8"
}

application/xml, text/xml

Sample:
<SIPUserListRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Raza.Web.Api.Models.MobileApp">
  <AppType>sample string 8</AppType>
  <AppVersion>sample string 7</AppVersion>
  <ContactList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </ContactList>
  <DeviceId>sample string 3</DeviceId>
  <DeviceModel>sample string 6</DeviceModel>
  <DeviceName>sample string 5</DeviceName>
  <DeviceType>sample string 4</DeviceType>
  <PhoneNumber>sample string 1</PhoneNumber>
  <Pin>sample string 2</Pin>
</SIPUserListRequestModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

SIPUserListResponseModel
NameDescriptionTypeAdditional information
BaseURL

string

None.

Users

Collection of SIPUserProfileResponse

None.

Response Formats

application/json, text/json

Sample:
{
  "BaseURL": "sample string 1",
  "Users": [
    {
      "UserName": "sample string 1",
      "ProfileImage": "sample string 2"
    },
    {
      "UserName": "sample string 1",
      "ProfileImage": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<SIPUserListResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Raza.Web.Api.Models.MobileApp">
  <BaseURL>sample string 1</BaseURL>
  <Users>
    <SIPUserProfileResponse>
      <ProfileImage>sample string 2</ProfileImage>
      <UserName>sample string 1</UserName>
    </SIPUserProfileResponse>
    <SIPUserProfileResponse>
      <ProfileImage>sample string 2</ProfileImage>
      <UserName>sample string 1</UserName>
    </SIPUserProfileResponse>
  </Users>
</SIPUserListResponseModel>