GET api/Brand?name={name}

Retrieves brand with specified name

Request Information

Parameters

NameDescriptionAdditional information
name
Brand's name

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "id": 1,
  "billing_rate": 2.1,
  "phone_number": "sample string 3",
  "incoming_domain": "sample string 4",
  "is_default": true,
  "name": "sample string 6",
  "primary_language": "sample string 7",
  "provider_id": 8
}

application/xml, text/xml

Sample:
<brand xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api.Branding">
  <id xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api">1</id>
  <billing_rate>2.1</billing_rate>
  <id>1</id>
  <incoming_domain>sample string 4</incoming_domain>
  <is_default>true</is_default>
  <phone_number>sample string 3</phone_number>
  <primary_language>sample string 7</primary_language>
</brand>