Skip to main content
POST
/
note
Add a new note
curl --request POST \
  --url https://jobaffinity.fr/restapi/v1/note \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "candidate": "<string>",
  "text": "<string>"
}
'
{
  "_status": "OK",
  "_actions": [
    {}
  ]
}

Authorizations

Authorization
string
header
required

HTTP Basic Authentication with API credentials

Body

application/json
candidate
string<uri>
required

URL of the candidate

text
string
required

Note content (HTML format)

Response

Note created successfully

_status
enum<string>
Available options:
OK,
INVALID
_actions
object[]