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:
- - Urgent job offer
- - Colour highlighted
- - Highlight to Promoted
- - Highlight to Promoted Plus
Request
WSDL Production URL
https://api.infojobs.[net|it]/soap/WSOfferV2Service?wsdl
WSDL Testing URL
https://api.infojobssbx.[net|it]/soap/WSOfferV2Service?wsdl
Security
- User Role: ROLE_EMPLOYER
Parameters
No parameters are needed.
Response
Response entities
Returns a list of upsellings.
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>63</productId> <productName>Destacado Urgente</productName> </upselling> <upselling> <productId>64</productId> <productName>Resaltado en color</productName> </upselling> <upselling> <productId>65</productId> <productName>Destacado en una subcategoría</productName> </upselling> <upselling> <productId>66</productId> <productName>Destacada Preferente</productName> </upselling> <upselling> <productId>67</productId> <productName>Destacada Preferente Plus</productName> </upselling> </upsellingList> </ns1:findMyUpsellingsResponse> </soap:Body> </soap:Envelope>