POST api/efiscalRS/serviceStatus

Request Information

URI Parameters

None.

Body Parameters

EFEchoCommand
NameDescriptionTypeAdditional information
ENUIdentifier

string

None.

TestMode

boolean

None.

Debug

string

None.

Type

string

None.

Text

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ENUIdentifier": "sample string 1",
  "TestMode": true,
  "Debug": "sample string 3",
  "Type": "sample string 4",
  "Text": "sample string 5"
}

application/xml, text/xml

Sample:
<EchoCommand xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ENUIdentifier>sample string 1</ENUIdentifier>
  <TestMode>true</TestMode>
  <Debug>sample string 3</Debug>
  <Type>sample string 4</Type>
  <Text>sample string 5</Text>
</EchoCommand>

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>