GET api/BillingImportExport/GetBillingProfileName

Get billing profile names for logged in user

Request Information

URI Parameters

None.

Header

NameDescriptionType
Authorization

This field is use to authenticate user using 'Bearer Token'.This token is generated using login method.User must add this token to the header.
Key = Authorization
Value = Bearer {Token}

string

Body Parameters

None.

Response Information

Resource Description

BillingProfileDetails
NameDescriptionType
BillingProfileList

List of billing profiles

Collection of string

Response Formats

application/json, text/json

Sample:
{
  "BillingProfileList": [
    "Single Line Profile",
    "Multi Line Profile"
  ]
}

application/xml, text/xml

Sample:
<?xml version="1.0" encoding="utf-16"?>
<BillingProfileDetails xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <BillingProfileList>
    <string>Single Line Profile</string>
    <string>Multi Line Profile</string>
  </BillingProfileList>
</BillingProfileDetails>