post
https://integrations.alvys.com/api/p/v/loads//notes
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Create a new note associated with a specific load.
Notes can be used to store operational comments, updates, or other annotations related to the load.
Path Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| loadNumber | string | Yes | The unique number identifying the load. |
| version | string | Yes | API version (e.g., 2.0). Default value: 2.0. |
Request Body
{
"Id": "string",
"Description": "string",
"NoteType": "string",
"CreatedAt": "2026-03-16T12:53:22.902Z",
"CreatedBy": "string"
}Request Body Parameters
| Name | Type | Description |
|---|---|---|
| CreatedAt | datetime | The timestamp when the note was created. |
| CreatedBy | string | The user or system creating the note. |
| Description | string | The text content of the note. |
| Id | string | Unique identifier of the note. |
| NoteType | string | The category or type of the note. |
Responses
200 OK
Returned when the note is successfully processed.
{
"CreatedAt": "2026-03-16T12:54:26.202Z",
"CreatedBy": "string",
"Description": "string",
"Id": "string",
"NoteType": "string"
}201 Created
Returned when a new note is successfully created.
{
"CreatedAt": "2026-03-16T12:54:26.203Z",
"CreatedBy": "string",
"Description": "string",
"Id": "string",
"NoteType": "string"
}