GET api/Trademarks/{id}
Get Trademark by Id
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
TrademarkName | Description | Type | Additional information |
---|---|---|---|
ID |
Identification number assigned for a particular data record |
integer |
None. |
TradeNameID |
Identification number assigned for a particular trademark or trade name |
decimal number |
None. |
TradeName |
Specifies the trademark or trade name of test specimen, if available |
string |
None. |
Manufacturer |
Specifies the manufacturer of the material |
string |
None. |
Source |
Authoritative reference for any additional information on material |
string |
None. |
Author |
Author of source |
string |
None. |
Date |
Date of publication of the source |
string |
None. |
Page |
Page number associated with material entry in source |
string |
None. |
Material |
Trademark, trade name, or some other designation for a material name |
string |
None. |
Com1 |
[Comment] Provides additional information on material, if available |
string |
None. |
NistCatalogue |
Card catalogue number for source located in NIST Library |
string |
None. |
Response Formats
application/json, text/json
Sample:
{ "id": 1, "tradeNameID": 1.0, "tradeName": "sample string 2", "manufacturer": "sample string 3", "source": "sample string 4", "author": "sample string 5", "date": "sample string 6", "page": "sample string 7", "material": "sample string 8", "com1": "sample string 9", "nistCatalogue": "sample string 10" }
application/xml, text/xml
Sample:
<Trademark xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/srd81.Models"> <Author>sample string 5</Author> <Com1>sample string 9</Com1> <Date>sample string 6</Date> <ID>1</ID> <Manufacturer>sample string 3</Manufacturer> <Material>sample string 8</Material> <NistCatalogue>sample string 10</NistCatalogue> <Page>sample string 7</Page> <Source>sample string 4</Source> <TradeName>sample string 2</TradeName> <TradeNameID>1</TradeNameID> </Trademark>