POST api/ArchiveBackup/SearchArchiveBackupOutput

列表查询

Request Information

URI Parameters

None.

Body Parameters

QueryArchiveBackupInput
NameDescriptionTypeAdditional information
PageSize

每页数据量

integer

None.

PageIndex

页码

integer

None.

Key

查询关键字

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PageSize": 1,
  "PageIndex": 2,
  "Key": "sample string 3"
}

text/html

Sample:
{"PageSize":1,"PageIndex":2,"Key":"sample string 3"}

application/xml, text/xml

Sample:
<QueryArchiveBackupInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services">
  <Key>sample string 3</Key>
  <PageIndex>2</PageIndex>
  <PageSize>1</PageSize>
</QueryArchiveBackupInput>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

列表查询

JsonRtnDtoOfPageResultOfArchiveBackupOutput
NameDescriptionTypeAdditional information
Msg

string

None.

State

RtnState

None.

Data

PageResultOfArchiveBackupOutput

None.

Response Formats

application/json, text/json

Sample:
{
  "Msg": "sample string 1",
  "State": 100,
  "Data": {
    "Value": [
      {
        "Name": "sample string 1",
        "CreationTime": "2024-09-25T00:06:54.5315951+08:00"
      },
      {
        "Name": "sample string 1",
        "CreationTime": "2024-09-25T00:06:54.5315951+08:00"
      }
    ],
    "PageIndex": 1,
    "PageSize": 2,
    "total": 3,
    "TotalPages": 4,
    "HasPreviousPage": false,
    "HasNextPage": true
  }
}

text/html

Sample:
{"Msg":"sample string 1","State":100,"Data":{"Value":[{"Name":"sample string 1","CreationTime":"2024-09-25T00:06:54.5315951+08:00"},{"Name":"sample string 1","CreationTime":"2024-09-25T00:06:54.5315951+08:00"}],"PageIndex":1,"PageSize":2,"total":3,"TotalPages":4,"HasPreviousPage":false,"HasNextPage":true}}

application/xml, text/xml

Sample:
<JsonRtnDtoOfPageResultOfArchiveBackupOutputv3CTEUQJS_STz13wm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services">
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/BJ.Infrastructure">
    <d2p1:PageIndex>1</d2p1:PageIndex>
    <d2p1:PageSize>2</d2p1:PageSize>
    <d2p1:TotalPages>4</d2p1:TotalPages>
    <d2p1:total>3</d2p1:total>
    <d2p1:Value>
      <ArchiveBackupOutput>
        <CreationTime>2024-09-25T00:06:54.5315951+08:00</CreationTime>
        <Name>sample string 1</Name>
      </ArchiveBackupOutput>
      <ArchiveBackupOutput>
        <CreationTime>2024-09-25T00:06:54.5315951+08:00</CreationTime>
        <Name>sample string 1</Name>
      </ArchiveBackupOutput>
    </d2p1:Value>
  </Data>
  <Msg>sample string 1</Msg>
  <State>Display</State>
</JsonRtnDtoOfPageResultOfArchiveBackupOutputv3CTEUQJS_STz13wm>

text/javascript, application/javascript, application/json-p

Sample:
/**/ typeof  === 'function' && ({"Msg":"sample string 1","State":100,"Data":{"Value":[{"Name":"sample string 1","CreationTime":"2024-09-25T00:06:54.5315951+08:00"},{"Name":"sample string 1","CreationTime":"2024-09-25T00:06:54.5315951+08:00"}],"PageIndex":1,"PageSize":2,"total":3,"TotalPages":4,"HasPreviousPage":false,"HasNextPage":true}});