POST api/CosFinance/SaveFinanceBatchDownload

Request Information

URI Parameters

None.

Body Parameters

Collection of MssFinanceBatchRecordDTO
NameDescriptionTypeAdditional information
Id

integer

None.

RecordType

string

String length: inclusive between 0 and 8000

BatchId

integer

None.

ReportType

integer

None.

IsDownloaded

boolean

None.

RecordTypeId

integer

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "RecordType": "sample string 2",
    "BatchId": 1,
    "ReportType": 1,
    "IsDownloaded": true,
    "RecordTypeId": 4
  },
  {
    "Id": 1,
    "RecordType": "sample string 2",
    "BatchId": 1,
    "ReportType": 1,
    "IsDownloaded": true,
    "RecordTypeId": 4
  }
]

application/xml, text/xml

Sample:
<ArrayOfMssFinanceBatchRecordDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.BL">
  <MssFinanceBatchRecordDTO>
    <BatchId>1</BatchId>
    <Id>1</Id>
    <IsDownloaded>true</IsDownloaded>
    <RecordType>sample string 2</RecordType>
    <RecordTypeId>4</RecordTypeId>
    <ReportType>1</ReportType>
  </MssFinanceBatchRecordDTO>
  <MssFinanceBatchRecordDTO>
    <BatchId>1</BatchId>
    <Id>1</Id>
    <IsDownloaded>true</IsDownloaded>
    <RecordType>sample string 2</RecordType>
    <RecordTypeId>4</RecordTypeId>
    <ReportType>1</ReportType>
  </MssFinanceBatchRecordDTO>
</ArrayOfMssFinanceBatchRecordDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

AsapResponseOfListOfMssFinanceBatchRecordDTO
NameDescriptionTypeAdditional information
isSuccess

boolean

None.

message

string

None.

jsonObj

Collection of MssFinanceBatchRecordDTO

None.

totalCount

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "isSuccess": true,
  "message": "sample string 2",
  "jsonObj": [
    {
      "Id": 1,
      "RecordType": "sample string 2",
      "BatchId": 1,
      "ReportType": 1,
      "IsDownloaded": true,
      "RecordTypeId": 4
    },
    {
      "Id": 1,
      "RecordType": "sample string 2",
      "BatchId": 1,
      "ReportType": 1,
      "IsDownloaded": true,
      "RecordTypeId": 4
    }
  ],
  "totalCount": 3
}

application/xml, text/xml

Sample:
<AsapResponseOfArrayOfMssFinanceBatchRecordDTO3NYuOdgi xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.Common">
  <isSuccess>true</isSuccess>
  <jsonObj xmlns:d2p1="http://schemas.datacontract.org/2004/07/ASAP_BL.BL">
    <d2p1:MssFinanceBatchRecordDTO>
      <d2p1:BatchId>1</d2p1:BatchId>
      <d2p1:Id>1</d2p1:Id>
      <d2p1:IsDownloaded>true</d2p1:IsDownloaded>
      <d2p1:RecordType>sample string 2</d2p1:RecordType>
      <d2p1:RecordTypeId>4</d2p1:RecordTypeId>
      <d2p1:ReportType>1</d2p1:ReportType>
    </d2p1:MssFinanceBatchRecordDTO>
    <d2p1:MssFinanceBatchRecordDTO>
      <d2p1:BatchId>1</d2p1:BatchId>
      <d2p1:Id>1</d2p1:Id>
      <d2p1:IsDownloaded>true</d2p1:IsDownloaded>
      <d2p1:RecordType>sample string 2</d2p1:RecordType>
      <d2p1:RecordTypeId>4</d2p1:RecordTypeId>
      <d2p1:ReportType>1</d2p1:ReportType>
    </d2p1:MssFinanceBatchRecordDTO>
  </jsonObj>
  <message>sample string 2</message>
  <totalCount>3</totalCount>
</AsapResponseOfArrayOfMssFinanceBatchRecordDTO3NYuOdgi>