POST api/efiscalraw/company

Request Information

URI Parameters

None.

Body Parameters

CompanyInfoModel
NameDescriptionTypeAdditional information
BusinessUnitCode

string

None.

ClientName

string

None.

VATNumber

string

None.

SoftwareCode

string

None.

MainteinerCode

string

None.

OperatorCode

string

None.

CertBase64String

string

None.

CertPassword

string

None.

CertInfo

string

None.

TestMode

boolean

None.

ENUIdentifier

string

None.

InternalIdentifier

string

None.

ValidFrom

date

None.

ValidTo

date

None.

Request Formats

application/json, text/json

Sample:
{
  "BusinessUnitCode": "sample string 1",
  "ClientName": "sample string 2",
  "VATNumber": "sample string 3",
  "SoftwareCode": "sample string 4",
  "MainteinerCode": "sample string 5",
  "OperatorCode": "sample string 6",
  "CertBase64String": "sample string 7",
  "CertPassword": "sample string 8",
  "CertInfo": "sample string 9",
  "TestMode": true,
  "ENUIdentifier": "sample string 11",
  "InternalIdentifier": "sample string 12",
  "ValidFrom": "2026-08-11T14:13:15.8811567+00:00",
  "ValidTo": "2026-08-11T14:13:15.8811567+00:00"
}

application/xml, text/xml

Sample:
<CompanyInfoModel xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <BusinessUnitCode>sample string 1</BusinessUnitCode>
  <ClientName>sample string 2</ClientName>
  <VATNumber>sample string 3</VATNumber>
  <SoftwareCode>sample string 4</SoftwareCode>
  <MainteinerCode>sample string 5</MainteinerCode>
  <OperatorCode>sample string 6</OperatorCode>
  <CertBase64String>sample string 7</CertBase64String>
  <CertPassword>sample string 8</CertPassword>
  <CertInfo>sample string 9</CertInfo>
  <TestMode>true</TestMode>
  <ENUIdentifier>sample string 11</ENUIdentifier>
  <InternalIdentifier>sample string 12</InternalIdentifier>
  <ValidFrom>2026-08-11T14:13:15.8811567+00:00</ValidFrom>
  <ValidTo>2026-08-11T14:13:15.8811567+00:00</ValidTo>
</CompanyInfoModel>

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>