GET api/efiscal/demo/ex25WithdrawDeposit?type={type}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
type

string

Required

Body Parameters

None.

Response Information

Resource Description

EFDepositCommand
NameDescriptionTypeAdditional information
Uid

string

None.

ENUIdentifier

string

None.

Type

string

None.

TestMode

boolean

None.

DepositType

string

None.

Amount

decimal number

None.

DateSend

date

None.

User

EFUser

None.

Response Formats

application/json, text/json

Sample:
{
  "Uid": "sample string 1",
  "ENUIdentifier": "sample string 2",
  "Type": "sample string 3",
  "TestMode": true,
  "DepositType": "sample string 5",
  "Amount": 6.0,
  "DateSend": "2026-08-11T16:46:58.1195328+00:00",
  "User": {
    "UserCode": "sample string 1",
    "UserName": "sample string 2"
  }
}

application/xml, text/xml

Sample:
<DepositCommand xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <UID>sample string 1</UID>
  <ENUIdentifier>sample string 2</ENUIdentifier>
  <Type>sample string 3</Type>
  <TestMode>true</TestMode>
  <DepositType>sample string 5</DepositType>
  <Amount>6</Amount>
  <DateSend>2026-08-11T16:46:58.1195328+00:00</DateSend>
  <User>
    <UserCode>sample string 1</UserCode>
    <UserName>sample string 2</UserName>
  </User>
</DepositCommand>