GET api/BillingService/QueryADevice?queryType={queryType}&deviceGuid={deviceGuid}&identifierType={identifierType}&identifier={identifier}

Documentation for 'QueryADevice'.

Request Information

Parameters

NameDescriptionAdditional information
queryType
Documentation for 'queryType'.

Define this parameter in the request URI.

deviceGuid
Documentation for 'deviceGuid'.

Define this parameter in the request URI.

identifierType
Documentation for 'identifierType'.

Define this parameter in the request URI.

identifier
Documentation for 'identifier'.

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "device_guid": "sample string 1",
  "device_model": "sample string 2",
  "identifier_type": "sample string 3",
  "identifier": "sample string 4",
  "device_state": "sample string 5",
  "alias_name": "sample string 6",
  "company_name": "sample string 7",
  "company_uuid": "sample string 8",
  "content_server_name": "sample string 9",
  "subscription_text_id": "sample string 10",
  "Subscription_state": "sample string 11",
  "next_billing_date": "sample string 12",
  "plan_name": "sample string 13",
  "is_success": true,
  "error_message": "sample string 15",
  "exception_name": "sample string 16",
  "error_code": 17
}

application/xml, text/xml

Sample:
<QueryADeviceResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MMS.RestApi.Entities.Billing">
  <error_code xmlns="http://schemas.datacontract.org/2004/07/Mandoe.Framework.WebApi">17</error_code>
  <error_message xmlns="http://schemas.datacontract.org/2004/07/Mandoe.Framework.WebApi">sample string 15</error_message>
  <exception_name xmlns="http://schemas.datacontract.org/2004/07/Mandoe.Framework.WebApi">sample string 16</exception_name>
  <is_success xmlns="http://schemas.datacontract.org/2004/07/Mandoe.Framework.WebApi">true</is_success>
  <Subscription_state>sample string 11</Subscription_state>
  <alias_name>sample string 6</alias_name>
  <company_name>sample string 7</company_name>
  <company_uuid>sample string 8</company_uuid>
  <content_server_name>sample string 9</content_server_name>
  <device_guid>sample string 1</device_guid>
  <device_model>sample string 2</device_model>
  <device_state>sample string 5</device_state>
  <identifier>sample string 4</identifier>
  <identifier_type>sample string 3</identifier_type>
  <next_billing_date>sample string 12</next_billing_date>
  <plan_name>sample string 13</plan_name>
  <subscription_text_id>sample string 10</subscription_text_id>
</QueryADeviceResponse>