POST
/
v1
/
accounts
/
notes
curl --request POST \
  --url https://platform.thena.ai/v1/accounts/notes \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "accountId": "A123",
  "content": "This is a note",
  "type": "T123",
  "visibility": "private",
  "attachmentUrls": [
    "https://example.com/attachment1.jpg",
    "https://example.com/attachment2.jpg"
  ],
  "metadata": {}
}'
{
  "id": "<string>",
  "accountId": "<string>",
  "account": "<string>",
  "content": "<string>",
  "type": "<string>",
  "typeId": "<string>",
  "typeConfiguration": {},
  "visibility": "<string>",
  "attachments": [
    "<string>"
  ],
  "author": "<string>",
  "authorId": "<string>",
  "authorEmail": "<string>",
  "createdAt": "<string>",
  "updatedAt": "<string>",
  "metadata": {}
}

Authorizations

x-api-key
string
header
required

Enter your API key

Body

application/json

Response

201
application/json

Operation successful

The response is of type object.