Skip to main content
POST
/
calls
/
{uuid}
/
call_notes
Create Call Note
curl --request POST \
  --url https://api.prod.usesimple.ai/api/v1/calls/{uuid}/call_notes \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "note": "<string>",
  "score": "good"
}'
{
  "success": true,
  "call_note": {
    "id": 123,
    "note": "<string>",
    "score": "good",
    "user": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "email": "<string>",
      "first_name": "<string>",
      "last_name": "<string>"
    },
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Path Parameters

uuid
string<uuid>
required

Body

application/json
score
enum<string>
required
Available options:
good,
room_for_improvement,
unrated
note
string

Response

success
boolean
default:true
required
call_note
object
required