Multiposter


Click here for a complete list of operations.

CandidateTag

from CandidateTag

Provides a mechanism to Tag a specific candidate so that the tag appears on the front end recruiter interface. A Tag is any short phrase. e.g. Ignore, Reviewed, etc

HTTP POST with Content-Type: application/json

{ "Request": { "sAPIKey": "string", "sCandidateEmail": "string", "sCandidateFirstName": "string", "sCandidateLastName": "string", "Tag": "string" } }

Test

The test form is only available for requests from the local machine.

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 /JSON/Multiposter.asmx/CandidateTag HTTP/1.1
Host: api.logicmelon.com
Content-Type: application/json; charset=utf-8
Content-Length: length

{
  "Request": {
    "sCultureID": "string",
    "sAPIKey": "string",
    "sCandidateEmail": "string",
    "sCandidateFirstName": "string",
    "sCandidateLastName": "string",
    "Tag": "string"
  }
}
  
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Content-Length: length

  
{ "d": [ or {
    "Success": boolean,
    "CandidateID": int,
    "CandidateEmail": "string",
    "CandidateFirstName": "string",
    "CandidateLastName": "string",
    "Tag": "string",
    "OrganisationID": [
      int,
      int
   }
  ]
}
  

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 /JSON/Multiposter.asmx/CandidateTag HTTP/1.1
Host: api.logicmelon.com
Content-Type: application/json; charset=utf-8
Content-Length: length

{
  "Request": {
    "sCultureID": "string",
    "sAPIKey": "string",
    "sCandidateEmail": "string",
    "sCandidateFirstName": "string",
    "sCandidateLastName": "string",
    "Tag": "string"
  }
}
  
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Content-Length: length

  
{ "d": [ or {
    "Success": boolean,
    "CandidateID": int,
    "CandidateEmail": "string",
    "CandidateFirstName": "string",
    "CandidateLastName": "string",
    "Tag": "string",
    "OrganisationID": [
      int,
      int
   }
  ]
}