{ "opencollection": "1.0.0", "info": { "name": "Paradox Authentication Candidate Attributes API", "version": "1.0.0" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "/auth/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Candidate Attributes", "type": "folder" }, "items": [ { "info": { "name": "Paradox Get candidate attributes", "type": "http" }, "http": { "method": "GET", "url": "https://api.paradox.ai/api/v1/public/candidate/attributes/:oid", "params": [ { "name": "oid", "value": "", "type": "path", "description": "Candidate OID or external OID" } ] }, "docs": "Retrieve all current custom attributes for a specific candidate." }, { "info": { "name": "Paradox Update candidate attributes", "type": "http" }, "http": { "method": "PUT", "url": "https://api.paradox.ai/api/v1/public/candidate/attributes", "body": { "type": "json", "data": "{}" } }, "docs": "Replace all candidate attributes with the provided set. Any attributes not included in the request will be removed." }, { "info": { "name": "Paradox Patch candidate attributes", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.paradox.ai/api/v1/public/candidate/attributes", "body": { "type": "json", "data": "{}" } }, "docs": "Partially update candidate attributes. Only the specified attributes will be modified; existing attributes not included will remain unchanged." } ] } ], "bundled": true }