Multiposter
Click here for a complete list of operations.
ApplicationProgress
Progress a specific application from a 3rd party RMS.
- sUsername This action will be performed in the context of the authenticated user. If you want to score as the job owner then please indicate boolScoreAsJobOwner = true.
- sAdvertID Our AdvertID of the job
- sAdvertCandidateID Our ApplicationID of the applicant. sAdvertID and sAdvertCandidateID must line up to be able to score.
- sProgressID The specific progressID. Contact us for id's applicable to your account. A list of commons ones are listed below:
- 100 Reject
- 200 General
- 201 Apply with CV
- 204 Applied already
- 220 Blank
- 300 Consider
- 351 Forwarded to manager
- 380 Suitable - Application form requested
- 750 Shortlist
- 850 Request for More Information
- 900 Questions
- 1210 General e-mail to candidates
- 1360 Request to get in touch
- 1361 Job Application To Ourselves
- 3000 Testing
- 4900 Interview request
- 5000 1st interview
- 5100 2nd interview
- 5200 3rd interview
- 5300 4th interview
- 6000 Not offered
- 6002 Regret after interview
- 8000 Offered
- 10000 Placement
- 11000 Vacancy closed
- 11002 Candidate Withdrawn
- sProgressAsJobOwner Progress as the job owner instead of the authenticated user. Boolean defaults to false.
Test
To test the operation using the HTTP POST protocol, click the 'Invoke' button.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 /SOAP/multiposter.asmx HTTP/1.1 Host: api.logicmelon.co.uk Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: "http://api.logicmelon.com/ApplicationProgress" <?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> <ApplicationProgress xmlns="http://api.logicmelon.com/"> <sCultureID>string</sCultureID> <sAPIKey>string</sAPIKey> <sUsername>string</sUsername> <sPassword>string</sPassword> <sAdvertID>string</sAdvertID> <sAdvertCandidateID>string</sAdvertCandidateID> <sProgressID>string</sProgressID> <sProgressAsJobOwner>string</sProgressAsJobOwner> </ApplicationProgress> </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> <ApplicationProgressResponse xmlns="http://api.logicmelon.com/"> <ApplicationProgressResult> <Success>boolean</Success> </ApplicationProgressResult> </ApplicationProgressResponse> </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 /SOAP/multiposter.asmx HTTP/1.1 Host: api.logicmelon.co.uk 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> <ApplicationProgress xmlns="http://api.logicmelon.com/"> <sCultureID>string</sCultureID> <sAPIKey>string</sAPIKey> <sUsername>string</sUsername> <sPassword>string</sPassword> <sAdvertID>string</sAdvertID> <sAdvertCandidateID>string</sAdvertCandidateID> <sProgressID>string</sProgressID> <sProgressAsJobOwner>string</sProgressAsJobOwner> </ApplicationProgress> </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> <ApplicationProgressResponse xmlns="http://api.logicmelon.com/"> <ApplicationProgressResult> <Success>boolean</Success> </ApplicationProgressResult> </ApplicationProgressResponse> </soap12:Body> </soap12:Envelope>
HTTP GET
The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.
GET /SOAP/multiposter.asmx/ApplicationProgress?sCultureID=string&sAPIKey=string&sUsername=string&sPassword=string&sAdvertID=string&sAdvertCandidateID=string&sProgressID=string&sProgressAsJobOwner=string HTTP/1.1 Host: api.logicmelon.co.uk
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <ApplicationProgressResult xmlns="http://api.logicmelon.com/"> <Success>boolean</Success> </ApplicationProgressResult>
HTTP POST
The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.
POST /SOAP/multiposter.asmx/ApplicationProgress HTTP/1.1 Host: api.logicmelon.co.uk Content-Type: application/x-www-form-urlencoded Content-Length: length sCultureID=string&sAPIKey=string&sUsername=string&sPassword=string&sAdvertID=string&sAdvertCandidateID=string&sProgressID=string&sProgressAsJobOwner=string
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <ApplicationProgressResult xmlns="http://api.logicmelon.com/"> <Success>boolean</Success> </ApplicationProgressResult>