GET v1/Clients/{clientId}/TechVendors

Gets all active Tech/Vendors that match the query, if provided.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
clientId

Client identifier.

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

A list.

Collection of TechVendorV1
NameDescriptionTypeAdditional information
TechVendorId

The Tech/Vendor Id.

integer

None.

DisplayName

The Display Name.

string

None.

EmailAddress

The Email Address.

string

None.

Phone

The Phone Number.

string

None.

VendorDepartmentReferenceId

The Vendor Department Reference Id.

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "TechVendorId": 1,
    "DisplayName": "sample string 2",
    "EmailAddress": "sample string 3",
    "Phone": "sample string 4",
    "VendorDepartmentReferenceId": 1
  },
  {
    "TechVendorId": 1,
    "DisplayName": "sample string 2",
    "EmailAddress": "sample string 3",
    "Phone": "sample string 4",
    "VendorDepartmentReferenceId": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfTechVendor xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Titan.API.Core.Models.Maintenance">
  <TechVendor>
    <DisplayName>sample string 2</DisplayName>
    <EmailAddress>sample string 3</EmailAddress>
    <Phone>sample string 4</Phone>
    <TechVendorId>1</TechVendorId>
    <VendorDepartmentReferenceId>1</VendorDepartmentReferenceId>
  </TechVendor>
  <TechVendor>
    <DisplayName>sample string 2</DisplayName>
    <EmailAddress>sample string 3</EmailAddress>
    <Phone>sample string 4</Phone>
    <TechVendorId>1</TechVendorId>
    <VendorDepartmentReferenceId>1</VendorDepartmentReferenceId>
  </TechVendor>
</ArrayOfTechVendor>