Skip to main content
POST
/
notes
Create notes
curl --request POST \
  --url https://api.standardmetrics.io/v1/notes/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "note": "Note content",
    "company_id": "a7Rt",
    "company_slug": "company-name",
    "author_id": "a7Rt"
  }
]
'
{
  "note": "<string>",
  "author_id": "<string>",
  "author": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "email": "<string>",
  "id": "<string>",
  "company_id": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.standardmetrics.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Your valid bearer token. All Auth tokens persist for all requests. Make sure to replace Client Credential Basic tokens with Bearer tokens after retrieving your bearer token. Go to the API Reference/Setup, User Guides/Initial Setup, or API Reference/Get API Access Token page to get your token.

Body

application/json
note
string

The note content

Example:

"Note content"

company_id
string

Company ID (either company_id or company_slug must be provided)

Example:

"a7Rt"

company_slug
string

Company slug (either company_id or company_slug must be provided)

Example:

"company-name"

author_id
string

Author ID

Example:

"a7Rt"

Response

201 - application/json
note
string
required
author_id
string
required
author
string
read-only
Minimum string length: 1
created_at
string<date-time>
read-only
email
string
read-only
Minimum string length: 1
id
string
read-only
company_id
string