GET api/firm?UserId={UserId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
UserId

integer

None.

Body Parameters

None.

Response Information

Resource Description

Collection of firm
NameDescriptionTypeAdditional information
CO_ID

integer

None.

CO_NM

string

None.

RATE_INCL_VAT

integer

None.

NO_ORDER_OPTION

integer

None.

ITEM_SEARCH_METHOD

string

None.

PARTY_SEARCH_METHOD

string

None.

DBNAME

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "CO_ID": 1,
    "CO_NM": "sample string 1",
    "RATE_INCL_VAT": 1,
    "NO_ORDER_OPTION": 1,
    "ITEM_SEARCH_METHOD": "sample string 2",
    "PARTY_SEARCH_METHOD": "sample string 3",
    "DBNAME": "sample string 4"
  },
  {
    "CO_ID": 1,
    "CO_NM": "sample string 1",
    "RATE_INCL_VAT": 1,
    "NO_ORDER_OPTION": 1,
    "ITEM_SEARCH_METHOD": "sample string 2",
    "PARTY_SEARCH_METHOD": "sample string 3",
    "DBNAME": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOffirm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ControllerLibrary">
  <firm>
    <CO_ID>1</CO_ID>
    <CO_NM>sample string 1</CO_NM>
    <DBNAME>sample string 4</DBNAME>
    <ITEM_SEARCH_METHOD>sample string 2</ITEM_SEARCH_METHOD>
    <NO_ORDER_OPTION>1</NO_ORDER_OPTION>
    <PARTY_SEARCH_METHOD>sample string 3</PARTY_SEARCH_METHOD>
    <RATE_INCL_VAT>1</RATE_INCL_VAT>
  </firm>
  <firm>
    <CO_ID>1</CO_ID>
    <CO_NM>sample string 1</CO_NM>
    <DBNAME>sample string 4</DBNAME>
    <ITEM_SEARCH_METHOD>sample string 2</ITEM_SEARCH_METHOD>
    <NO_ORDER_OPTION>1</NO_ORDER_OPTION>
    <PARTY_SEARCH_METHOD>sample string 3</PARTY_SEARCH_METHOD>
    <RATE_INCL_VAT>1</RATE_INCL_VAT>
  </firm>
</ArrayOffirm>