- Previous: Candidate Score APIs
- Up: Candidate Score APIs
- Next: GET Candidate Score Submission Results
POST Candidate Score
Description: Updates Candidate Ranking Score
Sample CURL:
curl -X POST "https://uat.vmsapi.vectorvms.com/candidatescore?Client_Org_Id=1234&Vendor_Org_Id=1234" -H "accept: application/json" -H "x-api-key: {your_api_key}" -H "x-signature: {your_api_signature}" -H "Content-Type: application/json" -d "CandidateScore Payload"
Parameter | Description |
---|---|
Client_Org_Id |
VMS Org ID for Client |
Vendor_Org_Id |
VMS Org ID for Vendor |
x-api-key |
Your API key (found in My Account) |
x-signature |
Signature (Key+Secret+Timestamp Hash) - refer to Authentication section of Documentation for more information |
Body |
Candidate Score Payload: [{ "requirementid": "", "candidateid": "", "candidatescore": "" }] |
Candidate Payload Key
Candidate Payload Field | REQUIRED | Data Type | Description |
---|---|---|---|
requirementid | Y | INTEGER | The VMS Requisition ID to which the Candidate receiving the score is submitted. |
candidateid | Y | INTEGER | The VMS Candidate ID of the Candidate receiving the score |
candidatescore | Y | Decimal(5,2) | Candidate score to be updated into Candidate_Ranking |
- Previous: Candidate Score APIs
- Up: Candidate Score APIs
- Next: GET Candidate Score Submission Results