POST
/
api
/
ats
/
v1
/
activities
curl --request POST \
  --url https://api.bindbee.dev/api/ats/v1/activities \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'x-connector-token: <x-connector-token>' \
  --data '{
  "user": "018b4bfb-5ece-70b1-ad5e-862a9433aa65",
  "activity_type": "NOTE",
  "subject": "Interview with John Doe",
  "body": "John Doe was interviewed for the position of Software Engineer.",
  "visibility": "PUBLIC",
  "candidate": "018b4bfb-5ece-70b1-ad5e-862a9433aa65"
}'
"<any>"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-connector-token
string
required

Body

application/json
user
string | null
required

The user who owns the activity.

activity_type
string | null
required

The type of activity.

body
string | null
required

The body of the activity. This can include notes, comments, or other relevant information.

visibility
string | null
required

Visibility of the activity. Can be PUBLIC/PRIVATE

candidate
string | null
required

Candidate who applied for the activity.

subject
string | null

The subject of the activity.

Response

201
application/json
Successful Response

The response is of type any.