POST api/efiscalRS/changeStatus

Request Information

URI Parameters

None.

Body Parameters

RSChangeStatusOnline
NameDescriptionTypeAdditional information
Id

string

None.

ENUIdentifier

string

None.

Success

boolean

None.

FiscalResponse

string

None.

Time

string

None.

Reference

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": "sample string 1",
  "ENUIdentifier": "sample string 2",
  "Success": true,
  "FiscalResponse": "sample string 4",
  "Time": "sample string 5",
  "Reference": "sample string 6"
}

application/xml, text/xml

Sample:
<RSChangeStatusOnline xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Id>sample string 1</Id>
  <ENUIdentifier>sample string 2</ENUIdentifier>
  <Success>true</Success>
  <FiscalResponse>sample string 4</FiscalResponse>
  <Time>sample string 5</Time>
  <Reference>sample string 6</Reference>
</RSChangeStatusOnline>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

EFCommandResponse
NameDescriptionTypeAdditional information
Url

EFUrl

None.

ENUIdentifier

string

None.

UIDRequest

string

None.

UIDResponse

string

None.

ResponseCode

string

None.

InternalId

string

None.

RawMessage

string

None.

IsSucccess

boolean

None.

Error

EFErrorResponse

None.

Data

EFSuccessDataResponse

None.

Response Formats

application/json, text/json

Sample:
{
  "Url": {
    "Value": "sample string 1"
  },
  "ENUIdentifier": "sample string 1",
  "UIDRequest": "sample string 2",
  "UIDResponse": "sample string 3",
  "ResponseCode": "sample string 4",
  "InternalId": "sample string 5",
  "RawMessage": "sample string 6",
  "IsSucccess": true,
  "Error": {
    "ErrorCode": "sample string 1",
    "ErrorMessage": "sample string 2"
  },
  "Data": {
    "DocumentNumber": "sample string 1"
  }
}

application/xml, text/xml

Sample:
<FiscalCommandResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <IsSucccess>true</IsSucccess>
  <Error>
    <ErrorCode>sample string 1</ErrorCode>
    <ErrorMessage>sample string 2</ErrorMessage>
  </Error>
  <Data>
    <DocumentNumber>sample string 1</DocumentNumber>
  </Data>
  <Url><![CDATA[sample string 1]]></Url>
  <ENUIdentifier>sample string 1</ENUIdentifier>
  <UIDRequest>sample string 2</UIDRequest>
  <UIDResponse>sample string 3</UIDResponse>
  <ResponseCode>sample string 4</ResponseCode>
  <InternalId>sample string 5</InternalId>
  <RawMessage>sample string 6</RawMessage>
</FiscalCommandResponse>