POST
/
customer
/
add-note
curl --request POST \
  --url https://vpn.bserv.dev/api/v1/customer/add-note \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --header 'token: <api-key>' \
  --data id=48 \
  --data 'note=This is a test!'
{
  "success": true,
  "user_id": 48,
  "message": "Note added successfully."
}

Authorizations

token
string
header
required

Body

application/x-www-form-urlencoded

Response

200 - application/json

OK

The response is of type object.

POST
/
customer
/
add-note
curl --request POST \
  --url https://vpn.bserv.dev/api/v1/customer/add-note \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --header 'token: <api-key>' \
  --data id=48 \
  --data 'note=This is a test!'
{
  "success": true,
  "user_id": 48,
  "message": "Note added successfully."
}

Authorizations

token
string
header
required

Body

application/x-www-form-urlencoded

Response

200 - application/json

OK

The response is of type object.