GfiPepWS


Click here for a complete list of operations.

COM_CONSULT_V16

Permet d'obtenir toutes les informations d'une commande dans PEP (A préférer au WS COM_CONSULT à partir de PEP 1.6).

Test

The test form is only available for requests from the local machine.

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /GFIPepProdWS/GfiPepWS.asmx HTTP/1.1
Host: pepws-prod.inj.isoftcloud.cloud
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://tempuri.org/COM_CONSULT_V16"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Header>
    <UserCredentials xmlns="http://tempuri.org/">
      <userName>string</userName>
      <password>string</password>
    </UserCredentials>
  </soap:Header>
  <soap:Body>
    <COM_CONSULT_V16 xmlns="http://tempuri.org/">
      <arg>
        <ETAB>string</ETAB>
        <BUDGET>string</BUDGET>
        <EXERCICE>string</EXERCICE>
        <NUM_COM>string</NUM_COM>
        <REF_EXT_COM>string</REF_EXT_COM>
        <DET_LIG_COM>string</DET_LIG_COM>
      </arg>
    </COM_CONSULT_V16>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <COM_CONSULT_V16Response xmlns="http://tempuri.org/">
      <COM_CONSULT_V16Result>
        <LIC_COL>string</LIC_COL>
        <LIC_BUD>string</LIC_BUD>
        <LIB_EXE>string</LIB_EXE>
        <TYP_PIE>string</TYP_PIE>
        <NUM_COM>string</NUM_COM>
        <LIC_TIER>string</LIC_TIER>
        <DAT_COM>string</DAT_COM>
        <LIL_COM>string</LIL_COM>
        <NUM_MAR>string</NUM_MAR>
        <OBS_COM>string</OBS_COM>
        <LIB_RES_COM>string</LIB_RES_COM>
        <ADR_LIV_COM>string</ADR_LIV_COM>
        <DAT_LIV_COM>string</DAT_LIV_COM>
        <COM_PJ_COM>string</COM_PJ_COM>
        <IND_TRA_COM>string</IND_TRA_COM>
        <REF_EXT_COM>string</REF_EXT_COM>
        <TYPOLOGIE>string</TYPOLOGIE>
        <CODE_DEVISE>string</CODE_DEVISE>
        <TAUX_DE_CHANGE>double</TAUX_DE_CHANGE>
        <COD_APP>string</COD_APP>
        <LIC_PROC>string</LIC_PROC>
        <GROUPE>string</GROUPE>
        <MNT_TTC>double</MNT_TTC>
        <IDF_UTIL>string</IDF_UTIL>
        <LIGNES_COM>
          <LigneInterfaceComListeRetourV16WSInfo>
            <NUM_LIG_COM>string</NUM_LIG_COM>
            <LIB_REF_LIG_COM>string</LIB_REF_LIG_COM>
            <LIC_REF_COM>string</LIC_REF_COM>
            <MNT_PU_LIG_COM>double</MNT_PU_LIG_COM>
            <QTE_LIG_COM>double</QTE_LIG_COM>
            <MNT_NET_LIG_COM>double</MNT_NET_LIG_COM>
            <QTE_LIG_REC_COM>double</QTE_LIG_REC_COM>
            <MNT_LIG_REC_COM>double</MNT_LIG_REC_COM>
          </LigneInterfaceComListeRetourV16WSInfo>
          <LigneInterfaceComListeRetourV16WSInfo>
            <NUM_LIG_COM>string</NUM_LIG_COM>
            <LIB_REF_LIG_COM>string</LIB_REF_LIG_COM>
            <LIC_REF_COM>string</LIC_REF_COM>
            <MNT_PU_LIG_COM>double</MNT_PU_LIG_COM>
            <QTE_LIG_COM>double</QTE_LIG_COM>
            <MNT_NET_LIG_COM>double</MNT_NET_LIG_COM>
            <QTE_LIG_REC_COM>double</QTE_LIG_REC_COM>
            <MNT_LIG_REC_COM>double</MNT_LIG_REC_COM>
          </LigneInterfaceComListeRetourV16WSInfo>
        </LIGNES_COM>
      </COM_CONSULT_V16Result>
    </COM_CONSULT_V16Response>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /GFIPepProdWS/GfiPepWS.asmx HTTP/1.1
Host: pepws-prod.inj.isoftcloud.cloud
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Header>
    <UserCredentials xmlns="http://tempuri.org/">
      <userName>string</userName>
      <password>string</password>
    </UserCredentials>
  </soap12:Header>
  <soap12:Body>
    <COM_CONSULT_V16 xmlns="http://tempuri.org/">
      <arg>
        <ETAB>string</ETAB>
        <BUDGET>string</BUDGET>
        <EXERCICE>string</EXERCICE>
        <NUM_COM>string</NUM_COM>
        <REF_EXT_COM>string</REF_EXT_COM>
        <DET_LIG_COM>string</DET_LIG_COM>
      </arg>
    </COM_CONSULT_V16>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <COM_CONSULT_V16Response xmlns="http://tempuri.org/">
      <COM_CONSULT_V16Result>
        <LIC_COL>string</LIC_COL>
        <LIC_BUD>string</LIC_BUD>
        <LIB_EXE>string</LIB_EXE>
        <TYP_PIE>string</TYP_PIE>
        <NUM_COM>string</NUM_COM>
        <LIC_TIER>string</LIC_TIER>
        <DAT_COM>string</DAT_COM>
        <LIL_COM>string</LIL_COM>
        <NUM_MAR>string</NUM_MAR>
        <OBS_COM>string</OBS_COM>
        <LIB_RES_COM>string</LIB_RES_COM>
        <ADR_LIV_COM>string</ADR_LIV_COM>
        <DAT_LIV_COM>string</DAT_LIV_COM>
        <COM_PJ_COM>string</COM_PJ_COM>
        <IND_TRA_COM>string</IND_TRA_COM>
        <REF_EXT_COM>string</REF_EXT_COM>
        <TYPOLOGIE>string</TYPOLOGIE>
        <CODE_DEVISE>string</CODE_DEVISE>
        <TAUX_DE_CHANGE>double</TAUX_DE_CHANGE>
        <COD_APP>string</COD_APP>
        <LIC_PROC>string</LIC_PROC>
        <GROUPE>string</GROUPE>
        <MNT_TTC>double</MNT_TTC>
        <IDF_UTIL>string</IDF_UTIL>
        <LIGNES_COM>
          <LigneInterfaceComListeRetourV16WSInfo>
            <NUM_LIG_COM>string</NUM_LIG_COM>
            <LIB_REF_LIG_COM>string</LIB_REF_LIG_COM>
            <LIC_REF_COM>string</LIC_REF_COM>
            <MNT_PU_LIG_COM>double</MNT_PU_LIG_COM>
            <QTE_LIG_COM>double</QTE_LIG_COM>
            <MNT_NET_LIG_COM>double</MNT_NET_LIG_COM>
            <QTE_LIG_REC_COM>double</QTE_LIG_REC_COM>
            <MNT_LIG_REC_COM>double</MNT_LIG_REC_COM>
          </LigneInterfaceComListeRetourV16WSInfo>
          <LigneInterfaceComListeRetourV16WSInfo>
            <NUM_LIG_COM>string</NUM_LIG_COM>
            <LIB_REF_LIG_COM>string</LIB_REF_LIG_COM>
            <LIC_REF_COM>string</LIC_REF_COM>
            <MNT_PU_LIG_COM>double</MNT_PU_LIG_COM>
            <QTE_LIG_COM>double</QTE_LIG_COM>
            <MNT_NET_LIG_COM>double</MNT_NET_LIG_COM>
            <QTE_LIG_REC_COM>double</QTE_LIG_REC_COM>
            <MNT_LIG_REC_COM>double</MNT_LIG_REC_COM>
          </LigneInterfaceComListeRetourV16WSInfo>
        </LIGNES_COM>
      </COM_CONSULT_V16Result>
    </COM_CONSULT_V16Response>
  </soap12:Body>
</soap12:Envelope>