findMyProfiles

Returns a list of the profiles of the current user that can use to publish job offers.


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

Name Description

code

String value that represents the identification of the profile

name

String value that represents the name of the profile

blind

Boolean value that represents if the profile is used to publish an offer without expose the company name

Error codes

Code Description

WS.150

Expired access token

WS.152

Access Token is required

WS.153

Access token not authorized for this operation

WS.154

Invalid access token

WS.155

Invalid access token

WS.156

Wrong access token

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">TEST-CLIENT-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:findMyProfiles/>
   </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-2">
            <wsu:Created>2012-05-06T20:15:25.305Z</wsu:Created>
            <wsu:Expires>2012-05-06T20:20:25.305Z</wsu:Expires>
         </wsu:Timestamp>
      </wsse:Security>
   </soap:Header>
   <soap:Body>
      <ns1:findMyProfilesResponse xmlns:ns1="http://offer.endpoints.www.soap.infojobs.net/">
         <profileList>
	         <profile>
	         	<code>123-abc</code>
	         	<name>codeName</name>
	         	<blind>true</blind>
	         </profile>
         </profileList>
      </ns1:findMyProfilesResponse>
   </soap:Body>
</soap:Envelope>