Multiposter
Click here for a complete list of operations.
ApplicationScore
Score 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.
- sScore The score to apply (S)uitable (green flag/4), (M)aybe suitable (blue/yellow flag/2), (U)nsuitable (red flag/1), (F)avourite (favourite star/64), (N)one (no flag/0)
- sScoreAsJobOwner Score 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/ApplicationScore" <?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> <ApplicationScore xmlns="http://api.logicmelon.com/"> <sCultureID>string</sCultureID> <sAPIKey>string</sAPIKey> <sUsername>string</sUsername> <sPassword>string</sPassword> <sAdvertID>string</sAdvertID> <sAdvertCandidateID>string</sAdvertCandidateID> <sScore>string</sScore> <sScoreAsJobOwner>string</sScoreAsJobOwner> </ApplicationScore> </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> <ApplicationScoreResponse xmlns="http://api.logicmelon.com/"> <ApplicationScoreResult> <Success>boolean</Success> </ApplicationScoreResult> </ApplicationScoreResponse> </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> <ApplicationScore xmlns="http://api.logicmelon.com/"> <sCultureID>string</sCultureID> <sAPIKey>string</sAPIKey> <sUsername>string</sUsername> <sPassword>string</sPassword> <sAdvertID>string</sAdvertID> <sAdvertCandidateID>string</sAdvertCandidateID> <sScore>string</sScore> <sScoreAsJobOwner>string</sScoreAsJobOwner> </ApplicationScore> </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> <ApplicationScoreResponse xmlns="http://api.logicmelon.com/"> <ApplicationScoreResult> <Success>boolean</Success> </ApplicationScoreResult> </ApplicationScoreResponse> </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/ApplicationScore?sCultureID=string&sAPIKey=string&sUsername=string&sPassword=string&sAdvertID=string&sAdvertCandidateID=string&sScore=string&sScoreAsJobOwner=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"?> <ApplicationScoreResult xmlns="http://api.logicmelon.com/"> <Success>boolean</Success> </ApplicationScoreResult>
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/ApplicationScore 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&sScore=string&sScoreAsJobOwner=string
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <ApplicationScoreResult xmlns="http://api.logicmelon.com/"> <Success>boolean</Success> </ApplicationScoreResult>