Sunteți pe pagina 1din 48

Servicii WEB

SEAP
Manual de utilizare servicii web
Ofertanti

Pagina 1
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB

Contents
1.1 Autentificare ................................................................................................................................. 3
1.2 Tratarea raspunsului ..................................................................................................................... 3
1.3 Servicii web ofertanti .................................................................................................................... 3
1.4 Obtinere lista contracte (SuContracts) ......................................................................................... 4
1.5 Descarcare contract (SuContractDownload) .............................................................................. 11
1.6 Obtinere lista facturi (SuInvoices) ............................................................................................... 13
1.7 Descarcare factura (SuInvoiceDownload) ................................................................................... 17
1.8 Exporta lista produse de catalog (Catalog_ExportXml) .............................................................. 18
1.9 Exporta lista produse de catalog (Catalog_ExportCsv) ............................................................... 19
1.10 Importa lista produse de catalog (Catalog_ImportXml) ............................................................. 20
1.11 Importa lista produse de catalog (Catalog_ImportCsv) .............................................................. 22
1.12 Catalog (Catalog_ListItems) ........................................................................................................ 24
1.13 Catalog (Catalog_UpdateItems) .................................................................................................. 26
1.14 Anunturi de intentie (SU_PiNotices) ........................................................................................... 27
1.15 Anunturi de participare (SU_CNotices) ....................................................................................... 38
1.16 Concurs de solutii (SU_DCNotices) ............................................................................................. 39
1.17 Concesionari (SU_PCNotices)...................................................................................................... 40
1.18 Cerere de oferta (SU_RfqInvitations).......................................................................................... 41
1.19 Anunturi de atribuire (SU_CaNotices) ........................................................................................ 42
1.20 Anunturi de atribuire la cererea de oferta (SU_RfqNotices) ...................................................... 44
1.21 Licitatii electronice (SU_EAProcedure) ....................................................................................... 45
1.22 Erate (SU_ENotices) .................................................................................................................... 46
1.23 Cumparari directe (SuDirectAcquisitions)................................................................................... 47

Pagina 2
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB

1.1 Autentificare

Link-ul pentru servicii web pentru mediul de productie este:


https://e-licitatie.ro:8883/pub
Link-ul pentru servicii web pentru mediul demo este: http://demo.e-licitatie.ro:8884/pub
(se poate descarca de aici wsdl-ul).

Autentificarea la serviciile web SEAP se va face pe baza unui SOAP Header personalizat.
Astfel, request-ul va trebui sa contina in header-ul SOAP obiectul SeapUserCredentials ce va
contine urmatoarele campuri.

Status Descriere
Username Cont utilizator
Password Parola

<soapenv:Header>
<SeapUserCredentials xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://tempuri.org">
<Password
xmlns=“http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">password</Password>
<Username
xmlns=“http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">username</Username>
</SeapUserCredentials>
</soapenv:Header>

Servicile web SEAP dispun de suport SSL astfel clientii vor trebui sa trimita mesajul
SOAP pe un canal securizat HTTPS folosind un certificat de client X509 emis de catre o
autoritate de certificare CA a sistemului SEAP.

1.2 Tratarea raspunsului


Cererea se considera a fi procesata cu succes daca serviciul intoarce <Status>0</Status>.
In caz de eroare, serviciul va intoarce un status diferit de zero iar campul description va contine
descrierea erorii.

Status Descriere
0 Succes
-1 Eroare interna serviciu
-2 Autentificare esuata
-3 Eroare validare campuri (detalii in campul Description)
-4 Autorizare esuata (lipsa drepturi)
1 Autentificare cu succes

1.3 Servicii web ofertanti

Descriere Metoda
1 Obtinere lista contracte SuContracts
2 Descarcare contract SuContractDownload
3 Obtinere lista facturi SuInvoices
Pagina 3
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB

4 Descarcare factura SuInvoiceDownload


5 Exporta lista produse de catalog Catalog_ExportXml
6 Catalog_ExportCsv
7 Importa lista produse de catalog Catalog_ImportXml
8 Catalog_ImportXmlDoc
9 Catalog_ImportCsv
10 Catalog Catalog_ListItems
11 Catalog_UpdateItems
12 Anunturi de intentie SU_PiNotices
13 Anunturi de participare SU_CNotices
14 Concurs de solutii SU_DCNotices
15 Concesionari SU_PCNotices
16 Cerere de oferta SU_RfqInvitations
17 Anunturi de atribuire SU_CaNotices
18 Anunturi de atribuire la cererea de SU_RfqNotices
oferta
19 Licitatii electronice SU_EAProcedure
20 Erate SU_ENotices
21 Cumparari directe SuDirectAcquisitions

1.4 Obtinere lista contracte (SuContracts)


ContractRequest

Element Tip Descriere


ContractingAuthorityName string Denumire autoritate contractanta
ContractStartDate DateTime? Data minima contract
ContractEndDate DateTime? Data maxima contract
PageIndex int

ContractResponse

Element Tip Descriere


Status ResponseStatus Stare raspuns
Description string Descriere (in caz de eroare)
PageIndex int
PageTotal int
Items List<ContractItem>

ContractItem

Element Tip Descriere


ContractId int
SysContractPhase SysItem
SysContractState SysItem
SysContractType SysItem
ContractValueCurrency SysItem
Pagina 4
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
SysContractChangeId int?
ContractNo string
ContractTitle string
ContractAwardingDate DateTime?
ContractDate DateTime
MonthsContractDuration int?
ContractValue decimal?
DefaultCurrencyContractValue decimal?
AdditionalInformation string
VersionNo int?
VersionDate DateTime?
IsCurrentVersion bool?
PublicationDate DateTime?
IsRejected bool?
Justification string
CANotice CANotice.CaNoticeV2
ContractPhases List<ContractPhase>
ContractSections List<ContractSection>

Exemplu cerere:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tem="http://tempuri.org/"
xmlns:sic="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model.Contrac
ts">
<soapenv:Header>
<SeapUserCredentials xmlns="http://tempuri.org"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Password i:nil="true"
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration"/>
<Username
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">george</Usernam
e>
</SeapUserCredentials>
</soapenv:Header>
<soapenv:Body>
<tem:SuContracts>
<!--Optional:-->
<tem:request>

</tem:request>
</tem:SuContracts>
</soapenv:Body>
</soapenv:Envelope>

Exemplu raspuns:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<SuContractsResponse xmlns="http://tempuri.org/">

Pagina 5
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
<SuContractsResult
xmlns:a="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model.Contracts
" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Description i:nil="true"
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration"/>
<Status
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">Success</Status
>
<a:Items>
<a:ContractItem>
<a:AdditionalInformation i:nil="true"/>
<a:CANotice
xmlns:b="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model.CANotice"
>
<b:SysNoticeVersionId>2</b:SysNoticeVersionId>
<b:AnnexD>
<b:Comments i:nil="true"/>
<b:CommodityMarketPurchase i:nil="true"/>
<b:IncompatibleUrgentReason i:nil="true"/>
<b:IsAwardedDueToContestDesign i:nil="true"/>
<b:ManufacturedByDirective i:nil="true"/>
<b:MilitaryTransportServices i:nil="true"/>
<b:OnlyInacceptableTenders i:nil="true"/>
<b:RepetitionOfStrictCondOrder i:nil="true"/>
<b:ServicesCoveredByDirective i:nil="true"/>
<b:ServicesNotCoveredByDirective i:nil="true"/>
<b:StrictConditionOrder i:nil="true"/>
<b:SysAnnexDAdvantageousTerm i:nil="true"
xmlns:c="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model"/>
<b:SysAnnexDSingleSuppReason i:nil="true"
xmlns:c="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model"/>
<b:SysProcedureType i:nil="true"
xmlns:c="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model"/>
<b:UnpredictableUrgentReason i:nil="true"/>
</b:AnnexD>
<b:General>
<b:AcSentToSeapDate
xmlns:c="http://schemas.datacontract.org/2004/07/System">
<c:DateTime>2016-06-29T02:59:56Z</c:DateTime>
<c:OffsetMinutes>180</c:OffsetMinutes>
</b:AcSentToSeapDate>
<b:CaAssignedUser i:nil="true"
xmlns:c="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model"/>
<b:CaNoticeId>462</b:CaNoticeId>
<b:ContractTitle>Test sectiunea V</b:ContractTitle>
<b:EntityId>7</b:EntityId>
<b:IsUtility>false</b:IsUtility>
<b:NoticeNo>CA000019</b:NoticeNo>
<b:NoticeNoJoue/>
<b:PublishDate i:nil="true"
xmlns:c="http://schemas.datacontract.org/2004/07/System"/>
<b:SendToJoue i:nil="true"/>
<b:SysAcquisitionContractType
xmlns:c="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model">
<c:Id>1</c:Id>
<c:Name>Furnizare</c:Name>
</b:SysAcquisitionContractType>

Pagina 6
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
<b:SysLegislationType
xmlns:c="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model">
<c:Id>3</c:Id>
<c:Name>Legea nr. 98/23.05.2016</c:Name>
</b:SysLegislationType>
<b:SysNoticeState
xmlns:c="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model">
<c:Id>4</c:Id>
<c:Name>In Asteptare Validare</c:Name>
</b:SysNoticeState>
<b:Validation
xmlns:c="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model.PINotice"
>
<c:AcceptDate i:nil="true"
xmlns:d="http://schemas.datacontract.org/2004/07/System"/>
<c:Comments i:nil="true"/>
<c:NoticeId>0</c:NoticeId>
<c:Observations i:nil="true"/>
<c:RejectDate i:nil="true"
xmlns:d="http://schemas.datacontract.org/2004/07/System"/>
</b:Validation>
</b:General>
<b:Section1>
<b:Section1_1>
<b:CaAddresses
xmlns:c="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model.Common">
<c:CaEntityInformation>
<c:BuyerProfileUrl i:nil="true"/>
<c:ContactPerson>Cosmin N</c:ContactPerson>
<c:EntityInformation>
<c:Address>Strada: Munţii Tatra, nr. 14, Sector: 1, Judet:
Bucuresti, Localitate: Bucuresti, Cod postal: 011022</c:Address>
<c:Cif i:nil="true"/>
<c:City
xmlns:d="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model">
<d:Id>1779</d:Id>
<d:Name>Bucuresti</d:Name>
</c:City>
<c:Country
xmlns:d="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model">
<d:Id>1</d:Id>
<d:Name>Romania</d:Name>
</c:Country>
<c:County i:nil="true"
xmlns:d="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model"/>
<c:Email>ac@mailinator.ro</c:Email>
<c:Fax i:nil="true"/>
<c:Name>Sediu Social</c:Name>
<c:NutsCode i:nil="true"
xmlns:d="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model"/>
<c:Phone>+40 24234</c:Phone>
<c:PostalCode>011022</c:PostalCode>
<c:Url>www.site.ro</c:Url>
</c:EntityInformation>
</c:CaEntityInformation>
</b:CaAddresses>
</b:Section1_1>

Pagina 7
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
<b:Section1_2>
<b:ForeignAplicableLaw i:nil="true"/>
<b:InvolvesJointProcurement>false</b:InvolvesJointProcurement>
<b:IsAwardedByCentralBody>false</b:IsAwardedByCentralBody>
</b:Section1_2>
<b:Section1_4>
<b:ContractingAuthorityType
xmlns:c="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model">
<c:Id>17</c:Id>
<c:Name>Agenție / birou regional sau local</c:Name>
</b:ContractingAuthorityType>
<b:OtherCAType i:nil="true"/>
</b:Section1_4>
<b:Section1_5>
<b:MainActivity i:nil="true"
xmlns:c="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model"/>
<b:OtherActivity i:nil="true"/>
</b:Section1_5>
</b:Section1>
<b:Section2>
<b:Section2_1>
<b:AdditionalCPVs
xmlns:c="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model"/>
<b:ContractHasLots>false</b:ContractHasLots>
<b:ContractName>Test sectiunea V</b:ContractName>
<b:Currency
xmlns:c="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model">
<c:Id>1</c:Id>
<c:Name>RON</c:Name>
</b:Currency>
<b:HighestOffer>0</b:HighestOffer>
<b:LowestOffer>0</b:LowestOffer>
<b:MainCPV
xmlns:c="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model">
<c:Id>10312</c:Id>
<c:Name>09322000-2</c:Name>
</b:MainCPV>
<b:ReferenceNumber>11</b:ReferenceNumber>
<b:ShortContractDescription>test222</b:ShortContractDescription>
<b:SysAcquisitionContractType
xmlns:c="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model">
<c:Id>1</c:Id>
<c:Name>Furnizare</c:Name>
</b:SysAcquisitionContractType>
<b:TotalValue>1200</b:TotalValue>
</b:Section2_1>
<b:Section2_2>
<b:Lots/>
</b:Section2_2>
</b:Section2>
<b:Section4>
<b:Section4_1>
<b:DynamicPurchasingSystem>false</b:DynamicPurchasingSystem>
<b:ElectronicAuction i:nil="true"/>
<b:FrameworkAgreement>false</b:FrameworkAgreement>
<b:IsAcceleratedProcedure i:nil="true"/>
<b:IsCoveredGpa i:nil="true"/>

Pagina 8
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
<b:Justification i:nil="true"/>
<b:SysProcedureType i:nil="true"
xmlns:c="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model"/>
</b:Section4_1>
<b:Section4_2>
<b:AwardFurtherCntr i:nil="true"/>
<b:PreviousPublicationNoticeDate i:nil="true"
xmlns:c="http://schemas.datacontract.org/2004/07/System"/>
<b:PreviousPublicationNoticeNumber i:nil="true"/>
<b:TerminationOfDynamicPchSys i:nil="true"/>
</b:Section4_2>
</b:Section4>
<b:Section5>
<b:CancelLotList/>
<b:ContractLotList>
<b:ContractLotInfo>
<b:ContractNo>121</b:ContractNo>
<b:LotNo i:nil="true"/>
<b:Section5_2>
<b:AwardedToGroupOfEcoOp i:nil="true"/>
<b:ConclusionDate>2016-06-21T00:00:00</b:ConclusionDate>
<b:ContractorAddressList>
<b:SectionAddressModel>
<b:EntityInformation
xmlns:c="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model.Common">
<c:Address>CRAIOVA,str.Tabaci nr 1</c:Address>
<c:Cif>157132</c:Cif>
<c:City i:nil="true"
xmlns:d="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model"/>
<c:Country i:nil="true"
xmlns:d="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model"/>
<c:County i:nil="true"
xmlns:d="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model"/>
<c:Email>daniel.uta@uti.ro</c:Email>
<c:Fax>021/54321</c:Fax>
<c:Name>OF George</c:Name>
<c:NutsCode i:nil="true"
xmlns:d="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model"/>
<c:Phone>021/12345</c:Phone>
<c:PostalCode i:nil="true"/>
<c:Url i:nil="true"/>
</b:EntityInformation>
<b:IsSme>false</b:IsSme>
</b:SectionAddressModel>
</b:ContractorAddressList>
<b:Currency i:nil="true"
xmlns:c="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model"/>
<b:HighestOffer i:nil="true"/>
<b:InitialEstimatedValue i:nil="true"/>
<b:IsSubcontractedContract i:nil="true"/>
<b:LowestOffer i:nil="true"/>
<b:NoReceivedElectronicOffers>0</b:NoReceivedElectronicOffers>
<b:NoReceivedOffersFromSme>0</b:NoReceivedOffersFromSme>
<b:NoReceivedOffersNonUe>0</b:NoReceivedOffersNonUe>
<b:NoReceivedOffersUe>0</b:NoReceivedOffersUe>
<b:OfferReceivedNo>5</b:OfferReceivedNo>
<b:SubcontractedDescription i:nil="true"/>

Pagina 9
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
<b:SubcontractedPercentage i:nil="true"/>
<b:SubcontractedValue i:nil="true"/>
<b:TotalValue>1200</b:TotalValue>
</b:Section5_2>
<b:Title i:nil="true"/>
</b:ContractLotInfo>
</b:ContractLotList>
</b:Section5>
<b:Section6>
<b:Section6_3>
<b:AdditionalInfo i:nil="true"/>
</b:Section6_3>
<b:Section6_4>
<b:AppealBody i:nil="true"
xmlns:c="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model.Common"/>
<b:DeadlineForReview i:nil="true"/>
<b:MediationBody i:nil="true"
xmlns:c="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model.Common"/>
<b:ReviewBody i:nil="true"
xmlns:c="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model.Common"/>
</b:Section6_4>
<b:Section6_5>
<b:NoticeDateOfDispatch i:nil="true"
xmlns:c="http://schemas.datacontract.org/2004/07/System"/>
</b:Section6_5>
</b:Section6>
</a:CANotice>
<a:ContractAwardingDate i:nil="true"/>
<a:ContractDate>2016-06-21T00:00:00</a:ContractDate>
<a:ContractId>371</a:ContractId>
<a:ContractNo>121</a:ContractNo>
<a:ContractPhases/>
<a:ContractSections>
<a:ContractSection>
<a:AssociationVersion>1</a:AssociationVersion>
<a:ContractId>371</a:ContractId>
<a:ContractObjectDescription>Partile
contractante3y123</a:ContractObjectDescription>
<a:ContractObjectName>Partile contractante53y123</a:ContractObjectName>
<a:IsRejected>false</a:IsRejected>
<a:IsSelected>true</a:IsSelected>
<a:RejectionReason i:nil="true"/>
<a:VersionDate>2016-06-29T05:49:31</a:VersionDate>
</a:ContractSection>
</a:ContractSections>
<a:ContractTitle i:nil="true"/>
<a:ContractValue>1200</a:ContractValue>
<a:ContractValueCurrency i:nil="true"
xmlns:b="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model"/>
<a:DefaultCurrencyContractValue i:nil="true"/>
<a:IsCurrentVersion>true</a:IsCurrentVersion>
<a:IsRejected>false</a:IsRejected>
<a:Justification i:nil="true"/>
<a:MonthsContractDuration>12</a:MonthsContractDuration>
<a:PublicationDate>2016-06-29T05:59:56</a:PublicationDate>
<a:SysContractChangeId i:nil="true"/>

Pagina 10
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
<a:SysContractPhase
xmlns:b="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model">
<b:Id>2</b:Id>
<b:Name>In derulare</b:Name>
</a:SysContractPhase>
<a:SysContractState
xmlns:b="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model">
<b:Id>1</b:Id>
<b:Name>In derulare</b:Name>
</a:SysContractState>
<a:SysContractType
xmlns:b="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model">
<b:Id>1</b:Id>
<b:Name>Contract de baza</b:Name>
</a:SysContractType>
<a:VersionDate>2016-06-29T05:49:31</a:VersionDate>
<a:VersionNo>1</a:VersionNo>
</a:ContractItem>
</a:Items>
<a:PageIndex>0</a:PageIndex>
<a:PageTotal>4</a:PageTotal>
</SuContractsResult>
</SuContractsResponse>
</s:Body>
</s:Envelope>

1.5 Descarcare contract (SuContractDownload)


Prin acesta metoda se exporta informatiile despre contractual identificat prin parametru numar contract.

ContractDownloadRequest

Element Tip Descriere


ContractDocumentId int

ContractDownloadResponse

Element Tip Descriere


Status ResponseStatus Stare raspuns
Description string Descriere (in caz de eroare)
Item ContractDocument

ContractDocument

Element Tip Descriere


ContractDocumentId int
ContractId int?
ContractAddendumId int?
SysContractDocumentType SysItem

Pagina 11
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB

Exemplu cerere:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tem="http://tempuri.org/"
xmlns:sic="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model.Contrac
ts">
<soapenv:Header>
<SeapUserCredentials xmlns="http://tempuri.org"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Password i:nil="true"
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration"/>
<Username
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">george</Usernam
e>
</SeapUserCredentials>
</soapenv:Header>
<soapenv:Body>
<tem:SuContractDownload>
<!--Optional:-->
<tem:request>
<!--Optional:-->
<sic:ContractDocumentId>371</sic:ContractDocumentId>
</tem:request>
</tem:SuContractDownload>
</soapenv:Body>
</soapenv:Envelope>

Exemplu raspuns:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<SuContractDownloadResponse xmlns="http://tempuri.org/">
<SuContractDownloadResult
xmlns:a="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model.Contracts
" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Description i:nil="true"
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration"/>
<Status
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">Success</Status
>
<a:Item>
<ClientFileName
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model.Common">Ele
ctronic_Contract_Document.pdf</ClientFileName>
<ContentBase64
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model.Common">
</ContentBase64>
<CopiedFromArchiveDate
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model.Common"
xmlns:b="http://schemas.datacontract.org/2004/07/System">
<b:DateTime>2016-06-29T02:55:41Z</b:DateTime>
<b:OffsetMinutes>180</b:OffsetMinutes>
</CopiedFromArchiveDate>
<DocumentCode i:nil="true"
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model.Common"/>
<DocumentId
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model.Common">857
8777</DocumentId>
Pagina 12
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
<DocumentName
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model.Common">Ele
ctronic Contract Document</DocumentName>
<FileHashValue
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model.Common">9d0
fcc7311d2f9f58104bdfafc6b41eb</FileHashValue>
<UniqueIdentificationCode i:nil="true"
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model.Common"/>
<a:ContractAddendumId i:nil="true"/>
<a:ContractDocumentId>125</a:ContractDocumentId>
<a:ContractId>371</a:ContractId>
<a:SysContractDocumentType
xmlns:b="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model">
<b:Id>3</b:Id>
<b:Name>Document contract electronic</b:Name>
</a:SysContractDocumentType>
</a:Item>
</SuContractDownloadResult>
</SuContractDownloadResponse>
</s:Body>
</s:Envelope>

1.6 Obtinere lista facturi (SuInvoices)


InvoiceRequest

Element Tip Descriere


MinDate DateTime? Data minima factura
MaxDate DateTime? Data maxima factura
PageIndex int Pentru paginare raspuns.
Returneaza doar pagina
PageIndex

InvoiceResponse

Element Tip Descriere


Status ResponseStatus Stare raspuns
Description string Descriere (in caz de eroare)
PageIndex int
PageTotal int Numar
Items List<InvoiceItem>

InvoiceItem

Element Tip Descriere


InvoiceId int
InvoiceFiscalCode string
InvoiceFiscalNumber string
InvoiceDate DateTime
InvoiceDueDate DateTime
TotalValue decimal
TotalValueNoVat decimal?

Pagina 13
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
TotalVatValue decimal?
Currency SysItem
InvoiceType SysItem
InvoiceStatus SysItem
DaysOfPaymentOverdue int?
SupplierAddress Address
ClientAddress Address
Payments IList<InvoicePayment>
Details IList<InvoiceDetail>

Exemplu cerere:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tem="http://tempuri.org/"
xmlns:sic="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model">
<soapenv:Header>
<SeapUserCredentials xmlns="http://tempuri.org"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Password i:nil="true"
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration"/>
<Username
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">george</Usernam
e>
</SeapUserCredentials>
</soapenv:Header>
<soapenv:Body>
<tem:SuInvoices>
<!--Optional:-->
<tem:request>
</tem:request>
</tem:SuInvoices>
</soapenv:Body>
</soapenv:Envelope>

Exemplu raspuns:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<SuInvoicesResponse xmlns="http://tempuri.org/">
<SuInvoicesResult
xmlns:a="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Description i:nil="true"
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration"/>
<Status
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">Success</Status
>
<a:Items>
<a:InvoiceItem>
<a:ClientAddress>
<a:AddressDescription>CRAIOVA,str.Tabaci nr 1</a:AddressDescription>
<a:AddressID>9</a:AddressID>
<a:AddressName>STR.TABACI NR 1 CRAIOVA</a:AddressName>
<a:Apartment i:nil="true"/>

Pagina 14
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
<a:Building i:nil="true"/>
<a:City>
<a:Id>3537</a:Id>
<a:Name>Craiova</a:Name>
</a:City>
<a:ContactPerson>Daniela Dinescu</a:ContactPerson>
<a:Country>
<a:Id>1</a:Id>
<a:Name>Romania</a:Name>
</a:Country>
<a:County>
<a:Id>15</a:Id>
<a:Name>Constanta</a:Name>
</a:County>
<a:District i:nil="true"/>
<a:Email>daniel.uta@uti.ro</a:Email>
<a:Entrance i:nil="true"/>
<a:Fax>021/54321</a:Fax>
<a:Floor i:nil="true"/>
<a:Mobile i:nil="true"/>
<a:Phone>021/12345</a:Phone>
<a:PostalCode>905200</a:PostalCode>
<a:Street>unirii</a:Street>
<a:StreetNumber>1</a:StreetNumber>
<a:SysAddressType>
<a:Id>1</a:Id>
<a:Name>Sediu Social</a:Name>
</a:SysAddressType>
<a:URL i:nil="true"/>
</a:ClientAddress>
<a:Currency>
<a:Id>1</a:Id>
<a:Name>RON</a:Name>
</a:Currency>
<a:DaysOfPaymentOverdue i:nil="true"/>
<a:Details>
<a:InvoiceDetail>
<a:BillingCatalog>
<a:BillingCatalogId>15</a:BillingCatalogId>
<a:BillingCatalogName>Notificari pe criterii de
interes</a:BillingCatalogName>
<a:Currency>
<a:Id>1</a:Id>
<a:Name>RON</a:Name>
</a:Currency>
<a:Price>31</a:Price>
<a:SysBillingCatalogType i:nil="true"/>
<a:VATValue>20</a:VATValue>
</a:BillingCatalog>
<a:BillingInvoiceId>199</a:BillingInvoiceId>
<a:Currency>
<a:Id>1</a:Id>
<a:Name>RON</a:Name>
</a:Currency>
<a:DateEndOfServices>2018-06-29T12:05:06</a:DateEndOfServices>
<a:DateStartOfServices>2016-06-29T12:05:06</a:DateStartOfServices>
<a:InvoiceDetailId>199</a:InvoiceDetailId>

Pagina 15
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
<a:Quantity>7</a:Quantity>
<a:TotalValue>260.40</a:TotalValue>
<a:TotalValueNoVat>217</a:TotalValueNoVat>
<a:UnitPrice>31</a:UnitPrice>
<a:VATValue>43.40</a:VATValue>
</a:InvoiceDetail>
</a:Details>
<a:InvoiceDate>2016-06-29T12:05:06</a:InvoiceDate>
<a:InvoiceDueDate>2016-08-28T12:05:06</a:InvoiceDueDate>
<a:InvoiceFiscalCode>SCP</a:InvoiceFiscalCode>
<a:InvoiceFiscalNumber>92</a:InvoiceFiscalNumber>
<a:InvoiceId>199</a:InvoiceId>
<a:InvoiceStatus>
<a:Id>3</a:Id>
<a:Name>Neachitat</a:Name>
</a:InvoiceStatus>
<a:InvoiceType>
<a:Id>3</a:Id>
<a:Name>In definire</a:Name>
</a:InvoiceType>
<a:Payments>
<a:InvoicePayment>
<a:Currency>
<a:Id>1</a:Id>
<a:Name>RON</a:Name>
</a:Currency>
<a:InvoicePayType>
<a:Id>1</a:Id>
<a:Name>Online</a:Name>
</a:InvoicePayType>
<a:PaymentDate i:nil="true"/>
<a:PaymentNumber i:nil="true"/>
<a:PaymentRegistrationDate>2016-06-
29T12:05:06</a:PaymentRegistrationDate>
<a:PaymentValue>260.40</a:PaymentValue>
</a:InvoicePayment>
</a:Payments>
<a:SupplierAddress>
<a:AddressDescription>Strada: Latina, nr. 2, Sector: -, Judet: Olt,
Localitate: Slatina, Cod postal: 230107</a:AddressDescription>
<a:AddressID>119814</a:AddressID>
<a:AddressName>Sediu Social</a:AddressName>
<a:Apartment i:nil="true"/>
<a:Building i:nil="true"/>
<a:City>
<a:Id>1779</a:Id>
<a:Name>Bucuresti</a:Name>
</a:City>
<a:ContactPerson>Delia Ppescu</a:ContactPerson>
<a:Country>
<a:Id>1</a:Id>
<a:Name>Romania</a:Name>
</a:Country>
<a:County>
<a:Id>31</a:Id>
<a:Name>Olt</a:Name>
</a:County>

Pagina 16
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
<a:District i:nil="true"/>
<a:Email>claudiu.petre@uti.ro</a:Email>
<a:Entrance i:nil="true"/>
<a:Fax>43531231</a:Fax>
<a:Floor i:nil="true"/>
<a:Mobile>342331235</a:Mobile>
<a:Phone>1231231212343</a:Phone>
<a:PostalCode>230107</a:PostalCode>
<a:Street>Latina</a:Street>
<a:StreetNumber>2</a:StreetNumber>
<a:SysAddressType>
<a:Id>1</a:Id>
<a:Name>Sediu Social</a:Name>
</a:SysAddressType>
<a:URL>www.url.ro23</a:URL>
</a:SupplierAddress>
<a:TotalValue>260.40</a:TotalValue>
<a:TotalValueNoVat>217</a:TotalValueNoVat>
<a:TotalVatValue>43.40</a:TotalVatValue>
</a:InvoiceItem>
</a:Items>
<a:PageIndex>0</a:PageIndex>
<a:PageTotal>10</a:PageTotal>
</SuInvoicesResult>
</SuInvoicesResponse>
</s:Body>
</s:Envelope>

1.7 Descarcare factura (SuInvoiceDownload)


InvoiceDownloadRequest

Element Tip Descriere


InvoiceDocumentId

InvoiceDownloadResponse

Element Tip Descriere


Status ResponseStatus Stare raspuns
Description string Descriere (in caz de eroare)
Item InvoiceDocument

InvoiceDocument

Element Tip Descriere


InvoiceId int
ClientFileName string
CopiedFromArchiveDate DateTimeOffset?
DocumentCode string
DocumentId int
DocumentName string
FileHashValue string
UniqueIdentificationCode string

Pagina 17
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
ContentBase64 string

Exemplu cerere:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tem="http://tempuri.org/"
xmlns:sic="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model">
<soapenv:Header>
<SeapUserCredentials xmlns="http://tempuri.org"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Password i:nil="true"
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration"/>
<Username
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">george</Usernam
e>
</SeapUserCredentials>
</soapenv:Header>
<soapenv:Body>
<tem:SuInvoiceDownload>
<!--Optional:-->
<tem:request>
<!--Optional:-->
<sic:InvoiceDocumentId>1</sic:InvoiceDocumentId>
</tem:request>
</tem:SuInvoiceDownload>
</soapenv:Body>
</soapenv:Envelope>

Exemplu raspuns:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<SuInvoiceDownloadResponse xmlns="http://tempuri.org/">
<SuInvoiceDownloadResult
xmlns:a="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Description i:nil="true"
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration"/>
<Status
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">Success</Status
>
<a:Item i:nil="true"/>
</SuInvoiceDownloadResult>
</SuInvoiceDownloadResponse>
</s:Body>
</s:Envelope>

1.8 Exporta lista produse de catalog (Catalog_ExportXml)


Request

Element Tip Descriere

CatalogExportResponse

Pagina 18
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB

Element Tip Descriere


Status ResponseStatus Stare raspuns
Description string Descriere (in caz de eroare)
Data string String Base64

Exemplu cerere:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tem="http://tempuri.org/">
<soapenv:Header>
<SeapUserCredentials xmlns="http://tempuri.org"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Password i:nil="true"
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration"/>
<Username
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">george</Usernam
e>
</SeapUserCredentials>
</soapenv:Header>
<soapenv:Body>
<tem:Catalog_ExportXml/>
</soapenv:Body>
</soapenv:Envelope>

Exemplu raspuns:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<Catalog_ExportXmlResponse xmlns="http://tempuri.org/">
<Catalog_ExportXmlResult
xmlns:a="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Description i:nil="true"
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration"/>
<Status
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">Success</Status
>
<a:Data>Base64String</a:Data>
</Catalog_ExportXmlResult>
</Catalog_ExportXmlResponse>
</s:Body>
</s:Envelope>

1.9 Exporta lista produse de catalog (Catalog_ExportCsv)


Request

Element Tip Descriere

CatalogExportResponse

Element Tip Descriere


Pagina 19
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
Status ResponseStatus Stare raspuns
Description string Descriere (in caz de eroare)
Data string

Exemplu cerere:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tem="http://tempuri.org/">
<soapenv:Header>
<SeapUserCredentials xmlns="http://tempuri.org"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Password i:nil="true"
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration"/>
<Username
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">george</Usernam
e>
</SeapUserCredentials>
</soapenv:Header>
<soapenv:Body>
<tem:Catalog_ExportCsv/>
</soapenv:Body>
</soapenv:Envelope>

Exemplu raspuns:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<Catalog_ExportCsvResponse xmlns="http://tempuri.org/">
<Catalog_ExportCsvResult
xmlns:a="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Description i:nil="true"
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration"/>
<Status
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">Success</Status
>
<a:Data>

<![CDATA[CatalogItemCode,StandardCode,CatalogItemName,CatalogItemDescription,CatalogItemD
eliveryCondition,CatalogItemPaymentCondition,CatalogItemPrice,MeasureUnit,InStock,UrlRefe
rence,CpvCode,Cpv
"SIR23","","Electrod Na","Electrod pentru determinarea ionilor de Na cu RL865","Livrare
la sediul beneficiarului.","OP in max 30 de zile de la data
facturarii","1715","bucata","No","","",""]]>
</a:Data>
</Catalog_ExportCsvResult>
</Catalog_ExportCsvResponse>
</s:Body>
</s:Envelope>

1.10 Importa lista produse de catalog (Catalog_ImportXml)


CatalogImportRequest

Element Tip Descriere


FileRaw String Fisierul XML in String base64
Pagina 20
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB

Structura fisierului xml/csv contine o lista de elemente CatalogItem


<?xml version="1.0" encoding="utf-8"?>
<CatalogItems>
<CatalogItem>
<CatalogItemCode>1</CatalogItemCode>
<CatalogItemName>Pahar de plastic ( unica folosinta )</CatalogItemName>
<CatalogItemDescription>Pahar de plastic de unica folosinta</CatalogItemDescription>
<CatalogItemDeliveryCondition>Livrare la domiciliu prin comanda
online</CatalogItemDeliveryCondition>
<CatalogItemPaymentCondition>Plata Ramburs / Plata prin transfer
bancar</CatalogItemPaymentCondition>
<CatalogItemPrice>2</CatalogItemPrice>
<MeasureUnit>bucata</MeasureUnit>
<InStock>true</InStock>
<CpvCode>39221120-4 Cani si pahare (Rev.2)</CpvCode>
<DoPublish>false</DoPublish>
<DoProcessImages>false</DoProcessImages>
<DoProcessPublish>false</DoProcessPublish>
</CatalogItem>
<CatalogItem>
<CatalogItemCode>2</CatalogItemCode>
<CatalogItemName>Figurine Action Man</CatalogItemName>
<CatalogItemDescription>asfafasfsdfsd</CatalogItemDescription>
<CatalogItemPrice>50</CatalogItemPrice>
<MeasureUnit>bucata</MeasureUnit>
<InStock>true</InStock>
<URLReference>www.actionman.ro</URLReference>
<CpvCode>37520000-9 Jucarii (Rev.2)</CpvCode>
<DoPublish>false</DoPublish>
<DoProcessImages>false</DoProcessImages>
<DoProcessPublish>false</DoProcessPublish>
<CatalogImage>
<Name>Screenshot_243</Name>
<Extension>.png</Extension>
<IsDefault>true</IsDefault>
</CatalogImage>
</CatalogItem>

...

</CatalogItems>

CatalogImportResponse

Element Tip Descriere


Status ResponseStatus Stare raspuns
Description string Descriere (in caz de eroare)
Updated int
Failed int
Results List<CatalogImportItem>

Exemplu cerere:
Pagina 21
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tem="http://tempuri.org/"
xmlns:sic="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model">
<soapenv:Header>
<SeapUserCredentials xmlns="http://tempuri.org"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Password i:nil="true"
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration"/>
<Username
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">george</Usernam
e>
</SeapUserCredentials>
</soapenv:Header>
<soapenv:Body>
<tem:Catalog_ImportXml>
<!--Optional:-->
<tem:request>
<!--Optional:-->
<sic:FileRaw>?</sic:FileRaw>
</tem:request>
</tem:Catalog_ImportXml>
</soapenv:Body>
</soapenv:Envelope>

Exemplu raspuns:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<Catalog_ImportXmlResponse xmlns="http://tempuri.org/">
<Catalog_ImportXmlResult
xmlns:a="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Description
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">System
error</Description>
<Status
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">SystemError</St
atus>
<a:Failed>0</a:Failed>
<a:Results/>
<a:Updated>0</a:Updated>
</Catalog_ImportXmlResult>
</Catalog_ImportXmlResponse>
</s:Body>
</s:Envelope>

1.11 Importa lista produse de catalog (Catalog_ImportCsv)


CatalogImportRequest

Element Tip Descriere


FileRaw string

Pagina 22
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB

Structura fisierului xml/csv contine o lista de elemente CatalogItem


<?xml version="1.0" encoding="utf-8"?>
<CatalogItems>
<CatalogItem>
<CatalogItemCode>1</CatalogItemCode>
<CatalogItemName>Pahar de plastic ( unica folosinta )</CatalogItemName>
<CatalogItemDescription>Pahar de plastic de unica folosinta</CatalogItemDescription>
<CatalogItemDeliveryCondition>Livrare la domiciliu prin comanda
online</CatalogItemDeliveryCondition>
<CatalogItemPaymentCondition>Plata Ramburs / Plata prin transfer
bancar</CatalogItemPaymentCondition>
<CatalogItemPrice>2</CatalogItemPrice>
<MeasureUnit>bucata</MeasureUnit>
<InStock>true</InStock>
<CpvCode>39221120-4 Cani si pahare (Rev.2)</CpvCode>
<DoPublish>false</DoPublish>
<DoProcessImages>false</DoProcessImages>
<DoProcessPublish>false</DoProcessPublish>
</CatalogItem>
<CatalogItem>
<CatalogItemCode>2</CatalogItemCode>
<CatalogItemName>Figurine Action Man</CatalogItemName>
<CatalogItemDescription>asfafasfsdfsd</CatalogItemDescription>
<CatalogItemPrice>50</CatalogItemPrice>
<MeasureUnit>bucata</MeasureUnit>
<InStock>true</InStock>
<URLReference>www.actionman.ro</URLReference>
<CpvCode>37520000-9 Jucarii (Rev.2)</CpvCode>
<DoPublish>false</DoPublish>
<DoProcessImages>false</DoProcessImages>
<DoProcessPublish>false</DoProcessPublish>
<CatalogImage>
<Name>Screenshot_243</Name>
<Extension>.png</Extension>
<IsDefault>true</IsDefault>
</CatalogImage>
</CatalogItem>

...

</CatalogItems>

CatalogImportResponse

Element Tip Descriere


Status ResponseStatus Stare raspuns
Description string Descriere (in caz de eroare)
Updated int
Failed int
Results List<CatalogImportItem>

Exemplu cerere:

Pagina 23
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tem="http://tempuri.org/"
xmlns:sic="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model">
<soapenv:Header>
<SeapUserCredentials xmlns="http://tempuri.org"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Password i:nil="true"
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration"/>
<Username
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">george</Usernam
e>
</SeapUserCredentials>
</soapenv:Header>
<soapenv:Body>
<tem:Catalog_ImportCsv>
<!--Optional:-->
<tem:request>
<!--Optional:-->
<sic:FileRaw>?</sic:FileRaw>
</tem:request>
</tem:Catalog_ImportCsv>
</soapenv:Body>
</soapenv:Envelope>

Exemplu raspuns:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<Catalog_ImportCsvResponse xmlns="http://tempuri.org/">
<Catalog_ImportCsvResult
xmlns:a="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Description
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">System
error</Description>
<Status
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">SystemError</St
atus>
<a:Failed>0</a:Failed>
<a:Results/>
<a:Updated>0</a:Updated>
</Catalog_ImportCsvResult>
</Catalog_ImportCsvResponse>
</s:Body>
</s:Envelope>

1.12 Catalog (Catalog_ListItems)


CatalogListRequest

Element Tip Descriere


LastUpdateStart DateTime Data de incept a ultimei modificari
LastUpdateEnd DateTime Data de sfarsit a ultimei modificari
CatalogItemCode string Cod reper de catalog
DoIncludeImages bool Se specifica daca se vor include si pozele in
raspuns
Pagina 24
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB

CatalogListResponse

Element Tip Descriere


Status ResponseStatus Stare raspuns
Description string Descriere (in caz de eroare)
Items List<ExportCatalogItem>

ExportCatalogItem

Element Tip Descriere


CatalogItemCode string Cod reper de catalog
StandardCode string Cod GTIN
CatalogItemName string Denumire reper
CatalogItemDescription string Descriere reper
CatalogItemDeliveryCondition string Conditii de livrare
CatalogItemPaymentCondition string Conditii de plata
CatalogItemPrice decimal Pret
MeasureUnit string Unitatea de masura
InStock bool In stoc
URLReference string Adresa website ofertant pentru mai
multe detalii
CpvCode string Cod CPV (v2)
Images List<CatalogImage> Lista de poze de tip CatalogImage

CatalogImage

Element Tip Descriere


Name string Nume fisier
Extension string Extensie fisier
IsDefault bool Specifica daca este poza principala
Base64Data string Continut fisier codificat base 64 string

Exemplu cerere:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tem="http://tempuri.org/"
xmlns:sic="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model">
<soapenv:Header>
<SeapUserCredentials xmlns="http://tempuri.org"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Password i:nil="true"
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration"/>
<Username
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">george</Usernam
e>
</SeapUserCredentials>
</soapenv:Header>
<soapenv:Body>
<tem:Catalog_ListItems>
<!--Optional:-->
<tem:request>
Pagina 25
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
</tem:request>
</tem:Catalog_ListItems>
</soapenv:Body>
</soapenv:Envelope>

Exemplu raspuns:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<Catalog_ListItemsResponse xmlns="http://tempuri.org/">
<Catalog_ListItemsResult
xmlns:a="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Description
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">System
error</Description>
<Status
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">SystemError</St
atus>
<a:Items/>
</Catalog_ListItemsResult>
</Catalog_ListItemsResponse>
</s:Body>
</s:Envelope>

1.13 Catalog (Catalog_UpdateItems)


CatalogUpdateRequest

Element Tip Descriere


Items List<CatalogItemUpdateCommand>

CatalogItemUpdateCommand

Element Tip Descriere


CatalogItemCode string
Price decimal
InStock bool
DoPublish bool
DoDelete bool
DoUpdatePrice bool
DoUpdateStock bool
DoProcessPublish bool
DoProcessDelete bool

CatalogImportResponse

Element Tip Descriere


Status ResponseStatus Stare raspuns
Description string Descriere (in caz de eroare)

Pagina 26
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB

Exemplu cerere:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tem="http://tempuri.org/"
xmlns:sic="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model">
<soapenv:Header>
<SeapUserCredentials xmlns="http://tempuri.org"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Password i:nil="true"
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration"/>
<Username
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">george</Usernam
e>
</SeapUserCredentials>
</soapenv:Header>
<soapenv:Body>
<tem:Catalog_UpdateItems>
<tem:request>
<sic:Items>
<!--Zero or more repetitions:-->
<sic:CatalogItemUpdateCommand>

</sic:CatalogItemUpdateCommand>
</sic:Items>
</tem:request>
</tem:Catalog_UpdateItems>
</soapenv:Body>
</soapenv:Envelope>

Exemplu raspuns:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<Catalog_UpdateItemsResponse xmlns="http://tempuri.org/">
<Catalog_UpdateItemsResult i:nil="true"
xmlns:a="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance"/>
</Catalog_UpdateItemsResponse>
</s:Body>
</s:Envelope>

1.14 Anunturi de intentie (SU_PiNotices)


PINoticeRequest

Element Tip Descriere


ContractingAuthority string Denumire autoritate contractanta
ContractObjectName string Denumire contract
CpvCode string Cod CPV
CpvCodeVersion string Versiune Cod CPV
PublicationStartDate DateTime? Inceput data publicare
PublicationEndDate DateTime? Sfarsit data publicare
NoticeNo string Numar anunt de intentie
CountyCode string Cod judet
PageIndex int Numarul paginii ce se doreste afisata din totalul paginilor cu
inregistrari

Pagina 27
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
PINoticeResponse

Element Tip Descriere


Status ResponseStatus Stare raspuns
Description string Descriere (in caz de eroare)
PageIndex int
PageTotal int
Items List<PINotice.PiNoticeBase>

Exemplu cerere:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tem="http://tempuri.org/"
xmlns:sic="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model">
<soapenv:Header>
<SeapUserCredentials xmlns="http://tempuri.org"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Password i:nil="true"
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration"/>
<Username
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">george</Usernam
e>
</SeapUserCredentials>
</soapenv:Header>
<soapenv:Body>
<tem:SU_PiNotices>
<!--Optional:-->
<tem:request>

</tem:request>
</tem:SU_PiNotices>
</soapenv:Body>
</soapenv:Envelope>

Exemplu raspuns:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<SU_PiNoticesResponse xmlns="http://tempuri.org/">
<SU_PiNoticesResult
xmlns:a="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Description i:nil="true"
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration"/>
<Status
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">Success</Status
>
<a:Items
xmlns:b="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model.PINotice"
>
<b:PiNoticeBase i:type="b:PiNoticeV2">
<b:SysNoticeVersionId>2</b:SysNoticeVersionId>
<b:General>
<b:AcSentToSeapDate
xmlns:c="http://schemas.datacontract.org/2004/07/System">

Pagina 28
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
<c:DateTime>2016-01-24T21:42:04Z</c:DateTime>
<c:OffsetMinutes>120</c:OffsetMinutes>
</b:AcSentToSeapDate>
<b:CaAssignedUser i:nil="true"/>
<b:ContractTitle>Denumire contract test</b:ContractTitle>
<b:EntityId>11142</b:EntityId>
<b:IsRelatedToCNotice>true</b:IsRelatedToCNotice>
<b:IsUtility>true</b:IsUtility>
<b:NoticeNo i:nil="true"/>
<b:NoticeNoJoue/>
<b:PiNoticeId>1</b:PiNoticeId>
<b:PublishDate xmlns:c="http://schemas.datacontract.org/2004/07/System">
<c:DateTime>2016-01-24T22:40:24Z</c:DateTime>
<c:OffsetMinutes>120</c:OffsetMinutes>
</b:PublishDate>
<b:SendToJoue i:nil="true"/>
<b:SysAcquisitionContractType i:nil="true"/>
<b:SysLegislationType>
<a:Id>2</a:Id>
<a:Name>OUG nr.114/2011</a:Name>
</b:SysLegislationType>
<b:SysNoticeState>
<a:Id>2</a:Id>
<a:Name>Publicat</a:Name>
</b:SysNoticeState>
<b:TimelimitsReceipttenders>true</b:TimelimitsReceipttenders>
<b:Validation>
<b:AcceptDate xmlns:c="http://schemas.datacontract.org/2004/07/System">
<c:DateTime>2016-01-24T23:34:27Z</c:DateTime>
<c:OffsetMinutes>120</c:OffsetMinutes>
</b:AcceptDate>
<b:Comments>obs</b:Comments>
<b:NoticeId>1</b:NoticeId>
<b:Observations>obs</b:Observations>
<b:RejectDate i:nil="true"
xmlns:c="http://schemas.datacontract.org/2004/07/System"/>
</b:Validation>
</b:General>
<b:Section1>
<b:PiNoticeId>1</b:PiNoticeId>
<b:Section1_1>
<b:CaAddresses
xmlns:c="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model.Common"/>
</b:Section1_1>
<b:Section1_2>
<b:ForeignAplicableLaw i:nil="true"/>
<b:InvolvesJointProcurement>false</b:InvolvesJointProcurement>
<b:IsAwardedByCentralBody>false</b:IsAwardedByCentralBody>
</b:Section1_2>
<b:Section1_3>
<b:AccessToDocsIsRestricted>false</b:AccessToDocsIsRestricted>

<b:AdditionalInfoObtainFromAboveAddress>true</b:AdditionalInfoObtainFromAboveAddress>
<b:AdditionalInfoObtainFromAddress i:nil="true"
xmlns:c="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model.Common"/>
<b:CommunicationRequiresTools>false</b:CommunicationRequiresTools>
<b:CommunicationRequiresToolsUrl i:nil="true"/>

Pagina 29
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB

<b:TenderOrRequestSubmittedAboveAddress>true</b:TenderOrRequestSubmittedAboveAddress>
<b:TenderOrRequestSubmittedAddress i:nil="true"
xmlns:c="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model.Common"/>
<b:TenderOrRequestSubmittedElectronically i:nil="true"/>
<b:Url i:nil="true"/>
</b:Section1_3>
<b:Section1_4>
<b:ContractingAuthorityType i:nil="true"/>
<b:OtherCAType i:nil="true"/>
</b:Section1_4>
<b:Section1_5>
<b:MainActivity i:nil="true"/>
<b:OtherActivity i:nil="true"/>
</b:Section1_5>
</b:Section1>
<b:Section2>
<b:Section2_v2>
<b:ContractObjectId>411315</b:ContractObjectId>
<b:PiNoticeId>1</b:PiNoticeId>
<b:Section2_1>
<b:CPVCodes/>

<b:CaReservesRightToAwardToLotsOrGroups>false</b:CaReservesRightToAwardToLotsOrGroups>
<b:ContractInfo>
<b:Currency i:nil="true"/>
<b:EstimatedValue i:nil="true"/>
<b:MaxEstimatedValue i:nil="true"/>
<b:MinEstimatedValue i:nil="true"/>
</b:ContractInfo>
<b:Description i:nil="true"/>
<b:HasLots i:nil="true"/>
<b:LotsGroupingDescription i:nil="true"/>
<b:MainCPVCode i:nil="true"/>
<b:MaxLots i:nil="true"/>
<b:MaxLotsAssignedToOneTender i:nil="true"/>
<b:ReferenceNo i:nil="true"/>
<b:SysAcquisitionContractType i:nil="true"/>
<b:SysLotDivisionOption i:nil="true"/>
<b:Title>Denumire contract test</b:Title>
</b:Section2_1>
<b:Section2_2>
<b:Lots/>
</b:Section2_2>
<b:Section2_3>
<b:EstimatedPublicationDate i:nil="true"
xmlns:c="http://schemas.datacontract.org/2004/07/System"/>
</b:Section2_3>
</b:Section2_v2>
<b:Section2_v2>
<b:ContractObjectId>411663</b:ContractObjectId>
<b:PiNoticeId>1</b:PiNoticeId>
<b:Section2_1>
<b:CPVCodes/>

<b:CaReservesRightToAwardToLotsOrGroups>false</b:CaReservesRightToAwardToLotsOrGroups>
<b:ContractInfo>

Pagina 30
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
<b:Currency>
<a:Id>1</a:Id>
<a:Name>RON</a:Name>
</b:Currency>
<b:EstimatedValue>4</b:EstimatedValue>
<b:MaxEstimatedValue i:nil="true"/>
<b:MinEstimatedValue i:nil="true"/>
</b:ContractInfo>
<b:Description>dsadas</b:Description>
<b:HasLots>true</b:HasLots>
<b:LotsGroupingDescription i:nil="true"/>
<b:MainCPVCode>
<a:Id>0</a:Id>
<a:Name>00000000</a:Name>
</b:MainCPVCode>
<b:MaxLots i:nil="true"/>
<b:MaxLotsAssignedToOneTender i:nil="true"/>
<b:ReferenceNo i:nil="true"/>
<b:SysAcquisitionContractType>
<a:Id>1</a:Id>
<a:Name>Furnizare</a:Name>
</b:SysAcquisitionContractType>
<b:SysLotDivisionOption>
<a:Id>3</a:Id>
<a:Name>Toate Loturile</a:Name>
</b:SysLotDivisionOption>
<b:Title>dasdasdsa</b:Title>
</b:Section2_1>
<b:Section2_2>
<b:Lots/>
</b:Section2_2>
<b:Section2_3>
<b:EstimatedPublicationDate i:nil="true"
xmlns:c="http://schemas.datacontract.org/2004/07/System"/>
</b:Section2_3>
</b:Section2_v2>
<b:Section2_v2>
<b:ContractObjectId>411665</b:ContractObjectId>
<b:PiNoticeId>1</b:PiNoticeId>
<b:Section2_1>
<b:CPVCodes/>

<b:CaReservesRightToAwardToLotsOrGroups>false</b:CaReservesRightToAwardToLotsOrGroups>
<b:ContractInfo>
<b:Currency>
<a:Id>1</a:Id>
<a:Name>RON</a:Name>
</b:Currency>
<b:EstimatedValue>2</b:EstimatedValue>
<b:MaxEstimatedValue i:nil="true"/>
<b:MinEstimatedValue>22</b:MinEstimatedValue>
</b:ContractInfo>
<b:Description>dsadsa</b:Description>
<b:HasLots>false</b:HasLots>
<b:LotsGroupingDescription i:nil="true"/>
<b:MainCPVCode>
<a:Id>12048</a:Id>

Pagina 31
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
<a:Name>30237134-7</a:Name>
</b:MainCPVCode>
<b:MaxLots i:nil="true"/>
<b:MaxLotsAssignedToOneTender i:nil="true"/>
<b:ReferenceNo i:nil="true"/>
<b:SysAcquisitionContractType>
<a:Id>3</a:Id>
<a:Name>Lucrari</a:Name>
</b:SysAcquisitionContractType>
<b:SysLotDivisionOption i:nil="true"/>
<b:Title>dsadsadsa</b:Title>
</b:Section2_1>
<b:Section2_2>
<b:Lots/>
</b:Section2_2>
<b:Section2_3>
<b:EstimatedPublicationDate i:nil="true"
xmlns:c="http://schemas.datacontract.org/2004/07/System"/>
</b:Section2_3>
</b:Section2_v2>
<b:Section2_v2>
<b:ContractObjectId>411667</b:ContractObjectId>
<b:PiNoticeId>1</b:PiNoticeId>
<b:Section2_1>
<b:CPVCodes/>

<b:CaReservesRightToAwardToLotsOrGroups>false</b:CaReservesRightToAwardToLotsOrGroups>
<b:ContractInfo>
<b:Currency>
<a:Id>1</a:Id>
<a:Name>RON</a:Name>
</b:Currency>
<b:EstimatedValue>2</b:EstimatedValue>
<b:MaxEstimatedValue i:nil="true"/>
<b:MinEstimatedValue i:nil="true"/>
</b:ContractInfo>
<b:Description>dsadsa</b:Description>
<b:HasLots>false</b:HasLots>
<b:LotsGroupingDescription i:nil="true"/>
<b:MainCPVCode>
<a:Id>12336</a:Id>
<a:Name>31643000-5</a:Name>
</b:MainCPVCode>
<b:MaxLots i:nil="true"/>
<b:MaxLotsAssignedToOneTender i:nil="true"/>
<b:ReferenceNo i:nil="true"/>
<b:SysAcquisitionContractType>
<a:Id>3</a:Id>
<a:Name>Lucrari</a:Name>
</b:SysAcquisitionContractType>
<b:SysLotDivisionOption i:nil="true"/>
<b:Title>dsadas</b:Title>
</b:Section2_1>
<b:Section2_2>
<b:Lots/>
</b:Section2_2>
<b:Section2_3>

Pagina 32
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
<b:EstimatedPublicationDate i:nil="true"
xmlns:c="http://schemas.datacontract.org/2004/07/System"/>
</b:Section2_3>
</b:Section2_v2>
<b:Section2_v2>
<b:ContractObjectId>411671</b:ContractObjectId>
<b:PiNoticeId>1</b:PiNoticeId>
<b:Section2_1>
<b:CPVCodes/>

<b:CaReservesRightToAwardToLotsOrGroups>false</b:CaReservesRightToAwardToLotsOrGroups>
<b:ContractInfo>
<b:Currency>
<a:Id>1</a:Id>
<a:Name>RON</a:Name>
</b:Currency>
<b:EstimatedValue>3</b:EstimatedValue>
<b:MaxEstimatedValue i:nil="true"/>
<b:MinEstimatedValue i:nil="true"/>
</b:ContractInfo>
<b:Description>dsadas</b:Description>
<b:HasLots>false</b:HasLots>
<b:LotsGroupingDescription i:nil="true"/>
<b:MainCPVCode>
<a:Id>12311</a:Id>
<a:Name>31532700-1</a:Name>
</b:MainCPVCode>
<b:MaxLots i:nil="true"/>
<b:MaxLotsAssignedToOneTender i:nil="true"/>
<b:ReferenceNo i:nil="true"/>
<b:SysAcquisitionContractType>
<a:Id>3</a:Id>
<a:Name>Lucrari</a:Name>
</b:SysAcquisitionContractType>
<b:SysLotDivisionOption i:nil="true"/>
<b:Title>dsadas</b:Title>
</b:Section2_1>
<b:Section2_2>
<b:Lots/>
</b:Section2_2>
<b:Section2_3>
<b:EstimatedPublicationDate i:nil="true"
xmlns:c="http://schemas.datacontract.org/2004/07/System"/>
</b:Section2_3>
</b:Section2_v2>
<b:Section2_v2>
<b:ContractObjectId>411666</b:ContractObjectId>
<b:PiNoticeId>1</b:PiNoticeId>
<b:Section2_1>
<b:CPVCodes/>

<b:CaReservesRightToAwardToLotsOrGroups>false</b:CaReservesRightToAwardToLotsOrGroups>
<b:ContractInfo>
<b:Currency i:nil="true"/>
<b:EstimatedValue i:nil="true"/>
<b:MaxEstimatedValue i:nil="true"/>
<b:MinEstimatedValue i:nil="true"/>

Pagina 33
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
</b:ContractInfo>
<b:Description i:nil="true"/>
<b:HasLots i:nil="true"/>
<b:LotsGroupingDescription i:nil="true"/>
<b:MainCPVCode i:nil="true"/>
<b:MaxLots i:nil="true"/>
<b:MaxLotsAssignedToOneTender i:nil="true"/>
<b:ReferenceNo i:nil="true"/>
<b:SysAcquisitionContractType i:nil="true"/>
<b:SysLotDivisionOption i:nil="true"/>
<b:Title></b:Title>
</b:Section2_1>
<b:Section2_2>
<b:Lots/>
</b:Section2_2>
<b:Section2_3>
<b:EstimatedPublicationDate i:nil="true"
xmlns:c="http://schemas.datacontract.org/2004/07/System"/>
</b:Section2_3>
</b:Section2_v2>
<b:Section2_v2>
<b:ContractObjectId>411668</b:ContractObjectId>
<b:PiNoticeId>1</b:PiNoticeId>
<b:Section2_1>
<b:CPVCodes/>

<b:CaReservesRightToAwardToLotsOrGroups>false</b:CaReservesRightToAwardToLotsOrGroups>
<b:ContractInfo>
<b:Currency>
<a:Id>1</a:Id>
<a:Name>RON</a:Name>
</b:Currency>
<b:EstimatedValue>2</b:EstimatedValue>
<b:MaxEstimatedValue i:nil="true"/>
<b:MinEstimatedValue>0</b:MinEstimatedValue>
</b:ContractInfo>
<b:Description>dsadsadsa</b:Description>
<b:HasLots>false</b:HasLots>
<b:LotsGroupingDescription i:nil="true"/>
<b:MainCPVCode>
<a:Id>12336</a:Id>
<a:Name>31643000-5</a:Name>
</b:MainCPVCode>
<b:MaxLots i:nil="true"/>
<b:MaxLotsAssignedToOneTender i:nil="true"/>
<b:ReferenceNo i:nil="true"/>
<b:SysAcquisitionContractType>
<a:Id>3</a:Id>
<a:Name>Lucrari</a:Name>
</b:SysAcquisitionContractType>
<b:SysLotDivisionOption i:nil="true"/>
<b:Title>dsdasdsa</b:Title>
</b:Section2_1>
<b:Section2_2>
<b:Lots/>
</b:Section2_2>
<b:Section2_3>

Pagina 34
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
<b:EstimatedPublicationDate i:nil="true"
xmlns:c="http://schemas.datacontract.org/2004/07/System"/>
</b:Section2_3>
</b:Section2_v2>
<b:Section2_v2>
<b:ContractObjectId>411669</b:ContractObjectId>
<b:PiNoticeId>1</b:PiNoticeId>
<b:Section2_1>
<b:CPVCodes/>

<b:CaReservesRightToAwardToLotsOrGroups>false</b:CaReservesRightToAwardToLotsOrGroups>
<b:ContractInfo>
<b:Currency>
<a:Id>1</a:Id>
<a:Name>RON</a:Name>
</b:Currency>
<b:EstimatedValue>2</b:EstimatedValue>
<b:MaxEstimatedValue i:nil="true"/>
<b:MinEstimatedValue i:nil="true"/>
</b:ContractInfo>
<b:Description>dsadsadsa</b:Description>
<b:HasLots>false</b:HasLots>
<b:LotsGroupingDescription i:nil="true"/>
<b:MainCPVCode>
<a:Id>12048</a:Id>
<a:Name>30237134-7</a:Name>
</b:MainCPVCode>
<b:MaxLots i:nil="true"/>
<b:MaxLotsAssignedToOneTender i:nil="true"/>
<b:ReferenceNo i:nil="true"/>
<b:SysAcquisitionContractType>
<a:Id>3</a:Id>
<a:Name>Lucrari</a:Name>
</b:SysAcquisitionContractType>
<b:SysLotDivisionOption i:nil="true"/>
<b:Title>dsadsa</b:Title>
</b:Section2_1>
<b:Section2_2>
<b:Lots/>
</b:Section2_2>
<b:Section2_3>
<b:EstimatedPublicationDate i:nil="true"
xmlns:c="http://schemas.datacontract.org/2004/07/System"/>
</b:Section2_3>
</b:Section2_v2>
<b:Section2_v2>
<b:ContractObjectId>411670</b:ContractObjectId>
<b:PiNoticeId>1</b:PiNoticeId>
<b:Section2_1>
<b:CPVCodes/>

<b:CaReservesRightToAwardToLotsOrGroups>false</b:CaReservesRightToAwardToLotsOrGroups>
<b:ContractInfo>
<b:Currency>
<a:Id>1</a:Id>
<a:Name>RON</a:Name>
</b:Currency>

Pagina 35
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
<b:EstimatedValue>3</b:EstimatedValue>
<b:MaxEstimatedValue i:nil="true"/>
<b:MinEstimatedValue i:nil="true"/>
</b:ContractInfo>
<b:Description>dadas</b:Description>
<b:HasLots>false</b:HasLots>
<b:LotsGroupingDescription i:nil="true"/>
<b:MainCPVCode>
<a:Id>12311</a:Id>
<a:Name>31532700-1</a:Name>
</b:MainCPVCode>
<b:MaxLots i:nil="true"/>
<b:MaxLotsAssignedToOneTender i:nil="true"/>
<b:ReferenceNo i:nil="true"/>
<b:SysAcquisitionContractType>
<a:Id>3</a:Id>
<a:Name>Lucrari</a:Name>
</b:SysAcquisitionContractType>
<b:SysLotDivisionOption i:nil="true"/>
<b:Title>dsadasdas</b:Title>
</b:Section2_1>
<b:Section2_2>
<b:Lots/>
</b:Section2_2>
<b:Section2_3>
<b:EstimatedPublicationDate i:nil="true"
xmlns:c="http://schemas.datacontract.org/2004/07/System"/>
</b:Section2_3>
</b:Section2_v2>
<b:Section2_v2>
<b:ContractObjectId>411664</b:ContractObjectId>
<b:PiNoticeId>1</b:PiNoticeId>
<b:Section2_1>
<b:CPVCodes/>

<b:CaReservesRightToAwardToLotsOrGroups>false</b:CaReservesRightToAwardToLotsOrGroups>
<b:ContractInfo>
<b:Currency>
<a:Id>1</a:Id>
<a:Name>RON</a:Name>
</b:Currency>
<b:EstimatedValue>22</b:EstimatedValue>
<b:MaxEstimatedValue>133</b:MaxEstimatedValue>
<b:MinEstimatedValue>2</b:MinEstimatedValue>
</b:ContractInfo>
<b:Description>dsdsds</b:Description>
<b:HasLots>true</b:HasLots>
<b:LotsGroupingDescription i:nil="true"/>
<b:MainCPVCode>
<a:Id>12311</a:Id>
<a:Name>31532700-1</a:Name>
</b:MainCPVCode>
<b:MaxLots i:nil="true"/>
<b:MaxLotsAssignedToOneTender>0</b:MaxLotsAssignedToOneTender>
<b:ReferenceNo i:nil="true"/>
<b:SysAcquisitionContractType>
<a:Id>3</a:Id>

Pagina 36
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
<a:Name>Lucrari</a:Name>
</b:SysAcquisitionContractType>
<b:SysLotDivisionOption>
<a:Id>1</a:Id>
<a:Name>Un Singur Lot</a:Name>
</b:SysLotDivisionOption>
<b:Title>obiect</b:Title>
</b:Section2_1>
<b:Section2_2>
<b:Lots/>
</b:Section2_2>
<b:Section2_3>
<b:EstimatedPublicationDate i:nil="true"
xmlns:c="http://schemas.datacontract.org/2004/07/System"/>
</b:Section2_3>
</b:Section2_v2>
</b:Section2>
<b:Section3>
<b:PiNoticeId>1</b:PiNoticeId>
<b:Section3_1>
<b:Deposits i:nil="true"/>
<b:EmployeePrograms i:nil="true"/>
<b:FinancialCapacity>True</b:FinancialCapacity>
<b:FinancialCapacityMinLevels i:nil="true"/>
<b:HasFinancialCapacity>true</b:HasFinancialCapacity>
<b:HasTechnicalCapacity>false</b:HasTechnicalCapacity>
<b:ShelterWorkshops i:nil="true"/>
<b:TechnicalCapacity i:nil="true"/>
<b:TechnicalCapacityMinLevels i:nil="true"/>
</b:Section3_1>
<b:Section3_2>
<b:ContractPerformanceConditions i:nil="true"/>
<b:ExecutionIsReservedToParticularProfession i:nil="true"/>
<b:IndicateNamesAndQualificationsOfStaff i:nil="true"/>
<b:ReferenceToRelevantLaw i:nil="true"/>
</b:Section3_2>
</b:Section3>
<b:Section4>
<b:PiNoticeId>1</b:PiNoticeId>
<b:Section4_1>
<b:ElectronicAuction>true</b:ElectronicAuction>
<b:ElectronicAuctionInfo>das</b:ElectronicAuctionInfo>
<b:IsPPP i:nil="true"/>
<b:MasterAgreement>true</b:MasterAgreement>
<b:MasterAgreementJustification i:nil="true"/>
<b:MasterAgreementOperatorsNo i:nil="true"/>
<b:MasterAgreementWithSingleOperator i:nil="true"/>
<b:ProcurementInvolvesSad>false</b:ProcurementInvolvesSad>
<b:SadMightBeUsedByAdditionalPurchasers i:nil="true"/>
<b:SysContractAssigmentType i:nil="true"/>
<b:SysProcedureType>
<a:Id>6</a:Id>
<a:Name>Dialog competitiv</a:Name>
</b:SysProcedureType>
</b:Section4_1>
<b:Section4_2>

Pagina 37
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
<b:AwardProceduresStartDate
xmlns:c="http://schemas.datacontract.org/2004/07/System">
<c:DateTime>2016-01-19T20:00:00Z</c:DateTime>
<c:OffsetMinutes>120</c:OffsetMinutes>
</b:AwardProceduresStartDate>
<b:OtherLanguage i:nil="true"/>
<b:TimelimitForReceiptOfTenders
xmlns:c="http://schemas.datacontract.org/2004/07/System">
<c:DateTime>2016-01-06T20:00:00Z</c:DateTime>
<c:OffsetMinutes>120</c:OffsetMinutes>
</b:TimelimitForReceiptOfTenders>
<b:UeLanguage/>
</b:Section4_2>
</b:Section4>
<b:Section6>
<b:PiNoticeId>1</b:PiNoticeId>
<b:Section6_2>
<b:ElectonicInvoicing>true</b:ElectonicInvoicing>
<b:ElectonicOrdering>true</b:ElectonicOrdering>
<b:ElectonicPayment>false</b:ElectonicPayment>
</b:Section6_2>
<b:Section6_3>
<b:AdditionalInfo>dsadsa22</b:AdditionalInfo>
</b:Section6_3>
<b:Section6_4>
<b:AppealBody i:nil="true"
xmlns:c="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model.Common"/>
<b:DeadlineForReview i:nil="true"/>
<b:MediationBody i:nil="true"
xmlns:c="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model.Common"/>
<b:ReviewBody i:nil="true"
xmlns:c="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model.Common"/>
</b:Section6_4>
<b:Section6_5>
<b:NoticeDateOfDispatch i:nil="true"
xmlns:c="http://schemas.datacontract.org/2004/07/System"/>
</b:Section6_5>
</b:Section6>
</b:PiNoticeBase>

</a:Items>
<a:PageIndex>0</a:PageIndex>
<a:PageTotal>10</a:PageTotal>
</SU_PiNoticesResult>
</SU_PiNoticesResponse>
</s:Body>
</s:Envelope>

1.15 Anunturi de participare (SU_CNotices)


CNoticeRequest

Element Tip Descriere


ContractingAuthorityName string Denumire autoritate contractanta
ContractObjectName string Denumire contract
CpvCode string Cod CPV
CpvCodeVersion string Versiune Cod CPV

Pagina 38
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
PublicationStartDate DateTime? Inceput data publicare
PublicationEndDate DateTime? Sfarsit data publicare
NoticeNo string Numar anunt de participare
CountyCode string Cod judet
SysProcedureStateId int? Starea Procedurii
PiNoticeNo string Numarul anuntului de intentie afferent
PageIndex int Numarul paginii ce se doreste afisata din totalul paginilor cu
inregistrari

CNoticeResponse

Element Tip Descriere


Status ResponseStatus Stare raspuns
Description string Descriere (in caz de eroare)
PageIndex int
PageTotal int
Items List<CNotice.CNoticeBase>

Exemplu cerere:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tem="http://tempuri.org/"
xmlns:sic="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model">
<soapenv:Header>
<SeapUserCredentials xmlns="http://tempuri.org"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Password i:nil="true"
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration"/>
<Username
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">george</Usernam
e>
</SeapUserCredentials>
</soapenv:Header>
<soapenv:Body>
<tem:SU_CNotices>
<!--Optional:-->
<tem:request>

</tem:request>
</tem:SU_CNotices>
</soapenv:Body>
</soapenv:Envelope>

Exemplu raspuns:

1.16 Concurs de solutii (SU_DCNotices)


DcNoticeRequest

Element Tip Descriere


ContractingAuthorityName string Denumire autoritate contractanta
ContractObjectName string Denumire contract
CpvCode string Cod CPV
Pagina 39
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
CpvCodeVersion string Versiune Cod CPV
PublicationStartDate DateTime? Inceput data publicare
PublicationEndDate DateTime? Sfarsit data publicare
NoticeNo string Numar anunt de participare
CountyCode string Cod judet
PageIndex int Numarul paginii ce se doreste
afisata din totalul paginilor cu
inregistrari

DcNoticeResponse

Element Tip Descriere


Status ResponseStatus Stare raspuns
Description string Descriere (in caz de eroare)
Items List<DCNotice.DcNoticeBase>

Exemplu cerere:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tem="http://tempuri.org/"
xmlns:sic="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model">
<soapenv:Header>
<SeapUserCredentials xmlns="http://tempuri.org"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Password i:nil="true"
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration"/>
<Username
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">george</Usernam
e>
</SeapUserCredentials>
</soapenv:Header>
<soapenv:Body>
<tem:SU_DCNotices>
<!--Optional:-->
<tem:request>

</tem:request>
</tem:SU_DCNotices>
</soapenv:Body>
</soapenv:Envelope>

Exemplu raspuns:

1.17 Concesionari (SU_PCNotices)

PcNoticeRequest

Element Tip Descriere


ContractingAuthorityName string Denumire autoritate contractanta
ContractObjectName string Denumire contract
CpvCode string Cod CPV

Pagina 40
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
CpvCodeVersion string Versiune Cod CPV
PublicationStartDate DateTime? Inceput data publicare
PublicationEndDate DateTime? Sfarsit data publicare
NoticeNo string Numar anunt de concurs de solutii
CountyCode string Cod judet
PageIndex int Numarul paginii ce se doreste
afisata din totalul paginilor cu
inregistrari

PcNoticeResponse

Element Tip Descriere


Status ResponseStatus Stare raspuns
Description string Descriere (in caz de eroare)
Items List<PCNotice.PcNoticeBase>

Exemplu cerere:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tem="http://tempuri.org/"
xmlns:sic="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model">
<soapenv:Header>
<SeapUserCredentials xmlns="http://tempuri.org"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Password i:nil="true"
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration"/>
<Username
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">george</Usernam
e>
</SeapUserCredentials>
</soapenv:Header>
<soapenv:Body>
<tem:SU_PCNotices>
<!--Optional:-->
<tem:request>

</tem:request>
</tem:SU_PCNotices>
</soapenv:Body>
</soapenv:Envelope>

Exemplu raspuns:

1.18 Cerere de oferta (SU_RfqInvitations)


RFQInvitationRequest

Element Tip Descriere


ContractingAuthorityName string Denumire autoritate contractanta
ContractObjectName string Denumire contract
CpvCode string Cod CPV
CpvCodeVersion string Versiune Cod CPV
PublicationStartDate DateTime? Inceput data publicare

Pagina 41
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
PublicationEndDate DateTime? Sfarsit data publicare
NoticeNo string Numar invitatiei de participare la cerere de oferta
CountyCode string Cod judet
SysProcedureStateId int? Starea cererii de oferta
PageIndex int Numarul paginii ce se doreste afisata din totalul paginilor cu
inregistrari

RFQInvitationResponse

Element Tip Descriere


Status ResponseStatus Stare raspuns
Description string Descriere (in caz de eroare)
Items List<RfqInvitationBase>

Exemplu cerere:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tem="http://tempuri.org/"
xmlns:sic="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model">
<soapenv:Header>
<SeapUserCredentials xmlns="http://tempuri.org"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Password i:nil="true"
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration"/>
<Username
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">george</Usernam
e>
</SeapUserCredentials>
</soapenv:Header>
<soapenv:Body>
<tem:SU_RfqInvitations>
<!--Optional:-->
<tem:request>

</tem:request>
</tem:SU_RfqInvitations>
</soapenv:Body>
</soapenv:Envelope>

Exemplu raspuns:

1.19 Anunturi de atribuire (SU_CaNotices)


CANoticeRequest

Element Tip Descriere


ContractingAuthorityName string Denumire autoritate contractanta
ContractObjectName string Denumire contract
CpvCode string Cod CPV
CpvCodeVersion string Versiune Cod CPV
PublicationStartDate DateTime? Inceput data publicare
PublicationEndDate DateTime? Sfarsit data publicare
NoticeNo string Numar anunt de atribuire

Pagina 42
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
CountyCode string Cod judet
SupplierWinnerName string Numele ofertantului castigator al
anuntului de atribuire
PiNoticeNo string Numarul anuntului de participare
afferent
SupplierWinnerCode string Codul de inregistrare (CUI) al
ofertantului castigator al anuntului
de atribuire
SupplierLooserName string Numele ofertantului necastigator al
anuntului de atribuire
SupplierLooserCode string Codul de inregistrare (CUI) al
ofertantului necastigator al
anuntului de atribuire
PageIndex int Numarul paginii ce se doreste
afisata din totalul paginilor cu
inregistrari

CANoticeResponse

Element Tip Descriere


Status ResponseStatus Stare raspuns
Description string Descriere (in caz de eroare)
Items List<CANotice.CaNoticeBase>

Exemplu cerere:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tem="http://tempuri.org/"
xmlns:sic="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model">
<soapenv:Header>
<SeapUserCredentials xmlns="http://tempuri.org"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Password i:nil="true"
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration"/>
<Username
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">george</Usernam
e>
</SeapUserCredentials>
</soapenv:Header>
<soapenv:Body>
<tem:SU_CaNotices>
<!--Optional:-->
<tem:request>

</tem:request>
</tem:SU_CaNotices>
</soapenv:Body>
</soapenv:Envelope>

Exemplu raspuns:

Pagina 43
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB

1.20 Anunturi de atribuire la cererea de oferta (SU_RfqNotices)


RFQNoticeRequest

Element Tip Descriere


ContractingAuthorityName string Denumire autoritate contractanta
ContractObjectName string Denumire contract
CpvCode string Cod CPV
CpvCodeVersion string Versiune Cod CPV
PublicationStartDate DateTime? Inceput data publicare
PublicationEndDate DateTime? Sfarsit data publicare
NoticeNo string Numar anunt de atribuire
CountyCode string Cod judet
SupplierWinnerName string Numele ofertantului castigator al anuntului de atribuire la
cererea de oferta
PiNoticeNo string Numarul invitatiei de participare afferent
SupplierWinnerCode string Codul de inregistrare (CUI) al ofertantului castigator al
anuntului de atribuire la cererea de oferta
SupplierLooserName string Numele ofertantului necastigator al anuntului de atribuire
la cererea de oferta
SupplierLooserCode string Codul de inregistrare (CUI) al ofertantului necastigator al
anuntului de atribuire la cererea de oferta
PageIndex int Numarul paginii ce se doreste afisata din totalul paginilor
cu inregistrari

RFQNoticeResponse

Element Tip Descriere


Status ResponseStatus Stare raspuns
Description string Descriere (in caz de eroare)
Items List<RfqNoticeBase>

Exemplu cerere:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tem="http://tempuri.org/"
xmlns:sic="http://schemas.datacontract.org/2004/07/SICAP.Ins.Interface.Model">
<soapenv:Header>
<SeapUserCredentials xmlns="http://tempuri.org"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Password i:nil="true"
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration"/>
<Username
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">george</Usernam
e>
</SeapUserCredentials>
</soapenv:Header>
<soapenv:Body>
<tem:SU_RFQNotices>
<!--Optional:-->
<tem:request>

Pagina 44
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
</tem:request>
</tem:SU_RFQNotices>
</soapenv:Body>
</soapenv:Envelope>

Exemplu raspuns:

1.21 Licitatii electronice (SU_EAProcedure)


EARequest

Element Tip Descriere


ContractingAuthorityName string Denumire autoritate contractanta
ContractObjectName string Denumire contract
CpvCode string Cod CPV
CpvCodeVersion string Versiune Cod CPV
PublicationStartDate DateTime? Inceput data publicare
PublicationEndDate DateTime? Sfarsit data publicare
EACode string Numar anunt de atribuire
CountyCode string Cod judet
ParentNoticeNo string Numarul anuntului asociat / parinte
SysProcedureTypeId int? Tipul procedurii din cadrul anuntului aferent licitatiei
electronice
Reoffer bool? Are/Nu are reofertare in cadrul fazei de rezuare a
competitiei
PageIndex int Numarul paginii ce se doreste afisata din totalul paginilor
cu inregistrari

EAResponse

Element Tip Descriere


Status ResponseStatus Stare raspuns
Description string Descriere (in caz de eroare)
Items List<Ea>

Exemplu cerere:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tem="http://tempuri.org/"
xmlns:sic="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model">
<soapenv:Header>
<SeapUserCredentials xmlns="http://tempuri.org"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Password i:nil="true"
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration"/>
<Username
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">george</Usernam
e>
</SeapUserCredentials>
</soapenv:Header>
<soapenv:Body>
<tem:SU_EAProcedure>
<!--Optional:-->

Pagina 45
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
<tem:request>

</tem:request>
</tem:SU_EAProcedure>
</soapenv:Body>
</soapenv:Envelope>

Exemplu raspuns:

1.22 Erate (SU_ENotices)


ENoticeRequest

Element Tip Descriere


ContractingAuthorityName string Denumire autoritate contractanta
ContractObjectName string Denumire contract
PublicationStartDate DateTime? Inceput data publicare
PublicationEndDate DateTime? Sfarsit data publicare
ErateNo string Numar anunt de atribuire
CountyCode string Cod judet
ParentNoticeNo string Numarul anuntului parinte
ParentNoticeTypeId int? Tipul anuntului parinte
PageIndex int Numarul paginii ce se doreste
afisata din totalul paginilor cu
inregistrari

ENoticeResponse

Element Tip Descriere


Status ResponseStatus Stare raspuns
Description string Descriere (in caz de eroare)
Items List<ENotice.ENoticeBase>

Exemplu cerere:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tem="http://tempuri.org/"
xmlns:sic="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model">
<soapenv:Header>
<SeapUserCredentials xmlns="http://tempuri.org"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Password i:nil="true"
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration"/>
<Username
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">george</Usernam
e>
</SeapUserCredentials>
</soapenv:Header>
<soapenv:Body>
<tem:SU_ENotices>
<!--Optional:-->
<tem:request>

</tem:request>
Pagina 46
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
</tem:SU_ENotices>
</soapenv:Body>
</soapenv:Envelope>

Exemplu raspuns:

1.23 Cumparari directe (SuDirectAcquisitions)


SUDARequest

Element Tip Descriere


ContractingAuthorityName string Denumire autoritate contractanta
ContractObjectName string Denumire contract
CpvCode string Cod CPV
CpvCodeVersion string Versiune Cod CPV
PublicationStartDate DateTime? Inceput data publicare
PublicationEndDate DateTime? Sfarsit data publicare
DANo string Numar cumpararii directe
CountyCode string Cod judet
SupplierName string Numele ofertantului
SysDirectAcquisitionState int? Starea cumpararii directe
PageIndex int Numarul paginii ce se doreste
afisata din totalul paginilor cu
inregistrari

SUDAResponse

Element Tip Descriere


Status ResponseStatus Stare raspuns
Description string Descriere (in caz de eroare)
Items List<SUDirectAcquisition>

Exemplu cerere:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tem="http://tempuri.org/"
xmlns:sic="http://schemas.datacontract.org/2004/07/SICAP.Supplier.Interface.Model">
<soapenv:Header>
<SeapUserCredentials xmlns="http://tempuri.org"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Password i:nil="true"
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration"/>
<Username
xmlns="http://schemas.datacontract.org/2004/07/SICAP.Service.Integration">george</Usernam
e>
</SeapUserCredentials>
</soapenv:Header>
<soapenv:Body>
<tem:SuDirectAcquisitions>
<!--Optional:-->
<tem:request>

</tem:request>

Pagina 47
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.
Servicii WEB
</tem:SuDirectAcquisitions>
</soapenv:Body>
</soapenv:Envelope>

Exemplu raspuns:

Pagina 48
Copyright © 2018 A.A.D.R. e-guvernare. Toate drepturile rezervate.

S-ar putea să vă placă și