POST Knowledge/Get?iid={iid}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
iid

integer

Required

Body Parameters

None.

Response Information

Resource Description

LibGetKnowledge
NameDescriptionTypeAdditional information
head

Lib_Knowledge

None.

Success

integer

None.

Msg

string

None.

Token

string

None.

Key

string

None.

FileName

string

None.

FilePageCount

integer

None.

images

Collection of InFileUpModel

None.

Response Formats

application/json, text/json

Sample:
{
  "images": [
    {
      "relation_Type": 1,
      "file_name": "sample string 2",
      "old_name": "sample string 3",
      "iid": 4
    },
    {
      "relation_Type": 1,
      "file_name": "sample string 2",
      "old_name": "sample string 3",
      "iid": 4
    }
  ],
  "head": {
    "IId": 1,
    "Title": "sample string 2",
    "Maker_Date": "2024-11-28 14:42:47",
    "Maker": "sample string 3",
    "Create_UserId": 1,
    "Describe": "sample string 4"
  },
  "Success": 1,
  "Msg": "sample string 2",
  "Token": "sample string 3",
  "Key": "sample string 4",
  "FileName": "sample string 5",
  "FilePageCount": 6
}

application/xml, text/xml

Sample:
<LibGetKnowledge xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WeldingAPI.Models.EF">
  <FileName xmlns="http://schemas.datacontract.org/2004/07/WeldingAPI.Models">sample string 5</FileName>
  <FilePageCount xmlns="http://schemas.datacontract.org/2004/07/WeldingAPI.Models">6</FilePageCount>
  <Key xmlns="http://schemas.datacontract.org/2004/07/WeldingAPI.Models">sample string 4</Key>
  <Msg xmlns="http://schemas.datacontract.org/2004/07/WeldingAPI.Models">sample string 2</Msg>
  <Success xmlns="http://schemas.datacontract.org/2004/07/WeldingAPI.Models">1</Success>
  <Token xmlns="http://schemas.datacontract.org/2004/07/WeldingAPI.Models">sample string 3</Token>
  <head>
    <Create_UserId>1</Create_UserId>
    <Describe>sample string 4</Describe>
    <IId>1</IId>
    <Maker>sample string 3</Maker>
    <Maker_Date>2024-11-28T14:42:47.5588352+08:00</Maker_Date>
    <Title>sample string 2</Title>
  </head>
  <images>
    <InFileUpModel>
      <file_name>sample string 2</file_name>
      <iid>4</iid>
      <old_name>sample string 3</old_name>
      <relation_Type>1</relation_Type>
    </InFileUpModel>
    <InFileUpModel>
      <file_name>sample string 2</file_name>
      <iid>4</iid>
      <old_name>sample string 3</old_name>
      <relation_Type>1</relation_Type>
    </InFileUpModel>
  </images>
</LibGetKnowledge>