POST api/Master/Find

各種マスター情報の検索。@n `KeyWord`によってどのマスター情報を取得するかを選択する。

Request Information

URI Parameters

None.

Body Parameters

検索条件 "KeyWord": マスター種別 "BuilderId": 会社ID == 以下マスター毎

MasterAPICommon
NameDescriptionTypeAdditional information
KeyWord

string

None.

Name

string

None.

Id

integer

None.

Unused

integer

None.

FileClassificationId

integer

None.

RecordDateId

integer

None.

RecordDateValue

string

None.

RegistrationPeriod

integer

None.

BuilderPublic

EnumBuilderPublic

None.

SupplierPublic

EnumSupplierPublic

None.

CustomerPublic

EnumCustomerPublic

None.

RegionId

integer

None.

MemberRankId

integer

None.

Amount

integer

None.

BankId

integer

None.

TypeOfBankId

integer

None.

TypeOfBankValue

string

None.

Code

string

None.

Furigana

string

None.

TypeOfPointUtilizationId

integer

None.

TypeOfBuildingId

integer

None.

ConstructionClassificationId

integer

None.

TypeOfIndustryId

integer

None.

UnitId

integer

None.

TitleOfHonourId

integer

None.

OrderStatusId

integer

None.

EstimateStatus

string

None.

ContentType

string

None.

FileTypesId

integer

None.

Rate

decimal number

None.

TaxRateDate

date

None.

TaxRatesId

integer

None.

SiteStatusId

integer

None.

RecordDatesId

integer

None.

BuilderId

integer

None.

CreatedDate

date

None.

ModifiedDate

date

None.

CreatedById

integer

None.

ModifiedById

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "KeyWord": "sample string 1",
  "Name": "sample string 2",
  "Id": 3,
  "Unused": 1,
  "FileClassificationId": 1,
  "RecordDateId": 1,
  "RecordDateValue": "sample string 4",
  "RegistrationPeriod": 1,
  "BuilderPublic": 1,
  "SupplierPublic": 0,
  "CustomerPublic": 0,
  "RegionId": 1,
  "MemberRankId": 1,
  "Amount": 1,
  "BankId": 1,
  "TypeOfBankId": 1,
  "TypeOfBankValue": "sample string 5",
  "Code": "sample string 6",
  "Furigana": "sample string 7",
  "TypeOfPointUtilizationId": 1,
  "TypeOfBuildingId": 1,
  "ConstructionClassificationId": 1,
  "TypeOfIndustryId": 1,
  "UnitId": 1,
  "TitleOfHonourId": 1,
  "OrderStatusId": 1,
  "EstimateStatus": "sample string 8",
  "ContentType": "sample string 9",
  "FileTypesId": 1,
  "Rate": 1.0,
  "TaxRateDate": "2025-12-10T05:48:04.31277+00:00",
  "TaxRatesId": 1,
  "SiteStatusId": 10,
  "RecordDatesId": 11,
  "BuilderId": 1,
  "CreatedDate": "2025-12-10T05:48:04.31277+00:00",
  "ModifiedDate": "2025-12-10T05:48:04.31277+00:00",
  "CreatedById": 14,
  "ModifiedById": 15
}

application/xml, text/xml

Sample:
<MasterAPICommon xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Uchinet.General.API.Data">
  <BuilderId>1</BuilderId>
  <CreatedById>14</CreatedById>
  <CreatedDate>2025-12-10T05:48:04.31277+00:00</CreatedDate>
  <ModifiedById>15</ModifiedById>
  <ModifiedDate>2025-12-10T05:48:04.31277+00:00</ModifiedDate>
  <Amount>1</Amount>
  <BankId>1</BankId>
  <BuilderPublic>OnlyTargetBuilder</BuilderPublic>
  <Code>sample string 6</Code>
  <ConstructionClassificationId>1</ConstructionClassificationId>
  <ContentType>sample string 9</ContentType>
  <CustomerPublic>NotPermitted</CustomerPublic>
  <EstimateStatus>sample string 8</EstimateStatus>
  <FileClassificationId>1</FileClassificationId>
  <FileTypesId>1</FileTypesId>
  <Furigana>sample string 7</Furigana>
  <Id>3</Id>
  <KeyWord>sample string 1</KeyWord>
  <MemberRankId>1</MemberRankId>
  <Name>sample string 2</Name>
  <OrderStatusId>1</OrderStatusId>
  <Rate>1</Rate>
  <RecordDateId>1</RecordDateId>
  <RecordDateValue>sample string 4</RecordDateValue>
  <RecordDatesId>11</RecordDatesId>
  <RegionId>1</RegionId>
  <RegistrationPeriod>1</RegistrationPeriod>
  <SiteStatusId>10</SiteStatusId>
  <SupplierPublic>NotPermitted</SupplierPublic>
  <TaxRateDate>2025-12-10T05:48:04.31277+00:00</TaxRateDate>
  <TaxRatesId>1</TaxRatesId>
  <TitleOfHonourId>1</TitleOfHonourId>
  <TypeOfBankId>1</TypeOfBankId>
  <TypeOfBankValue>sample string 5</TypeOfBankValue>
  <TypeOfBuildingId>1</TypeOfBuildingId>
  <TypeOfIndustryId>1</TypeOfIndustryId>
  <TypeOfPointUtilizationId>1</TypeOfPointUtilizationId>
  <UnitId>1</UnitId>
  <Unused>1</Unused>
</MasterAPICommon>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

data[n] count 件数

Collection of Dictionary of string [key] and Object [value]

Response Formats

application/json, text/json

Sample:
[
  {
    "sample string 1": {},
    "sample string 3": {}
  },
  {
    "sample string 1": {},
    "sample string 3": {}
  }
]

application/xml, text/xml

Sample:
<ArrayOfArrayOfKeyValueOfstringanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <ArrayOfKeyValueOfstringanyType>
    <KeyValueOfstringanyType>
      <Key>sample string 1</Key>
      <Value />
    </KeyValueOfstringanyType>
    <KeyValueOfstringanyType>
      <Key>sample string 3</Key>
      <Value />
    </KeyValueOfstringanyType>
  </ArrayOfKeyValueOfstringanyType>
  <ArrayOfKeyValueOfstringanyType>
    <KeyValueOfstringanyType>
      <Key>sample string 1</Key>
      <Value />
    </KeyValueOfstringanyType>
    <KeyValueOfstringanyType>
      <Key>sample string 3</Key>
      <Value />
    </KeyValueOfstringanyType>
  </ArrayOfKeyValueOfstringanyType>
</ArrayOfArrayOfKeyValueOfstringanyType>