Skip to main content
POST
/
applications
/
{id}
/
notes
Add note
curl --request POST \
  --url https://hireloam.com/api/v1/applications/{id}/notes \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "note": "Had a great phone screen. Moving forward with technical interview."
}
'
{
  "note": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "body": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

API key from Settings > API Keys

Path Parameters

id
string<uuid>
required

The application ID

Body

application/json
note
string
required

The note content

Response

Note created

note
object