ATS
cURL
curl --request POST \ --url https://api.stackone.com/unified/ats/interviews/{id}/notes \ --header 'Authorization: Basic <encoded-value>' \ --header 'Content-Type: application/json' \ --header 'x-account-id: <x-account-id>' \ --data ' { "content": [ { "body": "This candidate seems like a good fit for the role" } ], "author_id": "1234567890", "visibility": "public", "passthrough": { "other_known_names": "John Doe" } } '
{ "statusCode": 201, "message": "Record created successfully.", "timestamp": "2021-01-01T01:01:01.000Z", "data": { "id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3", "remote_id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3" } }
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
The account identifier
Show child attributes
Body of the note
"This candidate seems like a good fit for the role"
Unique identifier of the author
"1234567890"
Visibility of the note
The visibility of the notes.
private
public
unmapped_value
"public"
The source value of the notes visibility.
"Public"
Value to pass through to the provider
{ "other_known_names": "John Doe" }
Record created successfully.
201
"Record created successfully."
"2021-01-01T01:01:01.000Z"
Unique identifier
"8187e5da-dc77-475e-9949-af0f1fa4e4e3"
Provider's unique identifier
Was this page helpful?