findMyUpsellings

Obtains the list of available upsellings for the authenticated user. An upselling is a product used to improve the effectiveness of a job offer. Some examples of upsellings are:


  • - One shot (474)
  • - One shot weekly (475)
  • - Promoted offer (128)
  • - Additional province (77)


Request

WSDL Production URL

https://api.infojobs.[net|it]/soap/WSOfferV3Service?wsdl

WSDL Testing URL

https://api.infojobssbx.[net|it]/soap/WSOfferV3Service?wsdl

Security

  • User Role: ROLE_EMPLOYER

Parameters

No parameters are needed.

Response

Response entities

Returns a list of upsellings.

Fields related to the Upselling entity
Name Description

id

The identifier of the upselling

name

The name of the upselling

Error codes

There is not specific error codes for this operation.

Examples

Request

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:off="http://offer.endpoints.www.soap.infojobs.net/">
       <soapenv:Header>   
      <wsse:Security soapenv:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
         <wsse:UsernameToken wsu:Id="UsernameToken-799830164" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
            <wsse:Username>SOAP-TEST-CLIENT;/wsse:Username>
            <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">SOAP-TEST-SECRET</wsse:Password>
         </wsse:UsernameToken>
      </wsse:Security>
       <ij:authnHeader xmlns:ij='http://api.infojobs.net/soap/authn'>
	       <token>20000000-0000-0000-0000-0000</token>
       </ij:authnHeader>
   </soapenv:Header>
   <soapenv:Body>
      <off:findMyUpsellings/>
   </soapenv:Body>
</soapenv:Envelope>

Response

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Header>
      <wsse:Security soap:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
         <wsu:Timestamp wsu:Id="TS-1">
            <wsu:Created>2012-05-08T16:07:51.984Z</wsu:Created>
            <wsu:Expires>2012-05-08T16:12:51.984Z</wsu:Expires>
         </wsu:Timestamp>
      </wsse:Security>
   </soap:Header>
   <soap:Body>
      <ns1:findMyUpsellingsResponse xmlns:ns1="http://offer.endpoints.www.soap.infojobs.net/">
         <upsellingList>
            <upselling>
               <productId>474</productId>
               <productName>Subir a las primeras posiciones</productName>
            </upselling>
            <upselling>
               <productId>475</productId>
               <productName>Subir a las primeras posiciones cada semana</productName>
            </upselling>
            <upselling>
               <productId>77</productId>
               <productName>Província adicional</productName>
            </upselling>
            <upselling>
               <productId>128</productId>
               <productName>Destacada Preferente</productName>
            </upselling>
         </upsellingList>
      </ns1:findMyUpsellingsResponse>
   </soap:Body>
</soap:Envelope>