GET api/BillingService/ListAllResellers

Documentation for 'ListAllResellers'.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "reseller_list": [
    {
      "company_uuid": "sample string 1",
      "content_server_name": "sample string 2",
      "company_name": "sample string 3",
      "sub_customer_count": 4,
      "active_devices": 5,
      "active_sub_customer_devices": 6
    },
    {
      "company_uuid": "sample string 1",
      "content_server_name": "sample string 2",
      "company_name": "sample string 3",
      "sub_customer_count": 4,
      "active_devices": 5,
      "active_sub_customer_devices": 6
    },
    {
      "company_uuid": "sample string 1",
      "content_server_name": "sample string 2",
      "company_name": "sample string 3",
      "sub_customer_count": 4,
      "active_devices": 5,
      "active_sub_customer_devices": 6
    }
  ],
  "is_success": true,
  "error_message": "sample string 2",
  "exception_name": "sample string 3",
  "error_code": 4
}

application/xml, text/xml

Sample:
<ListAllResellersReponse 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">4</error_code>
  <error_message xmlns="http://schemas.datacontract.org/2004/07/Mandoe.Framework.WebApi">sample string 2</error_message>
  <exception_name xmlns="http://schemas.datacontract.org/2004/07/Mandoe.Framework.WebApi">sample string 3</exception_name>
  <is_success xmlns="http://schemas.datacontract.org/2004/07/Mandoe.Framework.WebApi">true</is_success>
  <reseller_list>
    <ListAllResellersReponse.ResellerInfo>
      <active_devices>5</active_devices>
      <active_sub_customer_devices>6</active_sub_customer_devices>
      <company_name>sample string 3</company_name>
      <company_uuid>sample string 1</company_uuid>
      <content_server_name>sample string 2</content_server_name>
      <sub_customer_count>4</sub_customer_count>
    </ListAllResellersReponse.ResellerInfo>
    <ListAllResellersReponse.ResellerInfo>
      <active_devices>5</active_devices>
      <active_sub_customer_devices>6</active_sub_customer_devices>
      <company_name>sample string 3</company_name>
      <company_uuid>sample string 1</company_uuid>
      <content_server_name>sample string 2</content_server_name>
      <sub_customer_count>4</sub_customer_count>
    </ListAllResellersReponse.ResellerInfo>
    <ListAllResellersReponse.ResellerInfo>
      <active_devices>5</active_devices>
      <active_sub_customer_devices>6</active_sub_customer_devices>
      <company_name>sample string 3</company_name>
      <company_uuid>sample string 1</company_uuid>
      <content_server_name>sample string 2</content_server_name>
      <sub_customer_count>4</sub_customer_count>
    </ListAllResellersReponse.ResellerInfo>
  </reseller_list>
</ListAllResellersReponse>