POST icss/api/v1/servicemanager/phonehome

Request Information

URI Parameters

None.

Body Parameters

PhoneHomeModel
NameDescriptionTypeAdditional information
actionType

string

None.

reportInfo

reportInfo

None.

Request Formats

application/json, text/json

Sample:
{
  "actionType": "sample string 1",
  "reportInfo": {
    "version": "sample string 1",
    "serviceId": "sample string 2",
    "status": true,
    "lastActionTime": 4.1,
    "connectionType": "sample string 5",
    "autoNotify": true,
    "transmitLogsForTroubleshooting": true,
    "contactInfo": {
      "name": "sample string 1",
      "company": "sample string 2",
      "email": "sample string 3",
      "phone": "sample string 4",
      "country": "sample string 5",
      "otherContact": [
        {
          "email": "sample string 1",
          "description": "sample string 2"
        },
        {
          "email": "sample string 1",
          "description": "sample string 2"
        }
      ]
    }
  }
}

application/xml, text/xml

Sample:
<PhoneHomeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ICSSQuickService.WebApi.Models">
  <actionType>sample string 1</actionType>
  <reportInfo>
    <autoNotify>true</autoNotify>
    <connectionType>sample string 5</connectionType>
    <contactInfo>
      <company>sample string 2</company>
      <country>sample string 5</country>
      <email>sample string 3</email>
      <name>sample string 1</name>
      <otherContact>
        <otherContact>
          <description>sample string 2</description>
          <email>sample string 1</email>
        </otherContact>
        <otherContact>
          <description>sample string 2</description>
          <email>sample string 1</email>
        </otherContact>
      </otherContact>
      <phone>sample string 4</phone>
    </contactInfo>
    <lastActionTime>4.1</lastActionTime>
    <serviceId>sample string 2</serviceId>
    <status>true</status>
    <transmitLogsForTroubleshooting>true</transmitLogsForTroubleshooting>
    <version>sample string 1</version>
  </reportInfo>
</PhoneHomeModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResultOutputModels
NameDescriptionTypeAdditional information
Result

boolean

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Result": true,
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<ResultOutputModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ICSSQuickService.WebApi.Models">
  <Message>sample string 2</Message>
  <Result>true</Result>
</ResultOutputModels>