POST/ create
| Route | {root}/v4/user-note/create | 
| Request type | BODY | 
| User level | SUPER USER | 
| Requires authentication | Yes | 
| Response type | Single | 
Parameters
| Name | Type | Nullable? | Required? | Min. | Max. | Nest | Custom | 
|---|---|---|---|---|---|---|---|
| user_id | INT32 | REQUIRED | 0 | 2147483647 | - | - | |
| note | STRING | OPTIONAL | 0 | 500 | - | - | 
Sample cURL
curl --location --request POST "{{ROOT}}user-note/create/" \
-H "Authorization: Bearer {{BEARER_TOKEN}}" \
-H "app-id:{{APP_ID}}" \
-H "Content-Type: application/json" \
-H "Accept-Encoding: gzip" \
-H "accept: */*" \
--data '{"user_id": "123456","note": "sample"}'
                                    
                                Sample response
Standard response object returned, see API Overview for structure.