POST api/efiscal/serviceStatus
Request Information
URI Parameters
None.
Body Parameters
BaseEFCommand| Name | Description | Type | Additional information |
|---|---|---|---|
| UID | string |
None. |
|
| PrinterId | string |
None. |
|
| Type | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UID": "sample string 1",
"PrinterId": "sample string 2",
"Type": "sample string 3"
}
application/xml, text/xml
Sample:
<EFCommand xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <UID>sample string 1</UID> <PrinterId>sample string 2</PrinterId> <Type>sample string 3</Type> </EFCommand>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
EFCommandResponse| Name | Description | Type | Additional 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>