POST api/v1/booking/insertMemo
Request Information
URI Parameters
None.
Body Parameters
BookingInsertMemoRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ShopId | globally unique identifier |
None. |
|
| CustomerId | globally unique identifier |
None. |
|
| Start | date |
None. |
|
| End | date |
None. |
|
| Text | string |
None. |
|
| ResourceType | TipoRisorsa |
None. |
|
| ResourceId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ShopId": "f12a8203-40f5-4f07-b83e-37c1a4804a54",
"CustomerId": "c4c2b64e-c54e-4bdc-9946-90c5db0c3fd8",
"Start": "2026-04-12T13:30:50.6170376+02:00",
"End": "2026-04-12T13:30:50.6170376+02:00",
"Text": "sample string 4",
"ResourceType": 0,
"ResourceId": 5
}
application/xml, text/xml
Sample:
<BookingInsertMemoRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Area.API.Data"> <CustomerId>c4c2b64e-c54e-4bdc-9946-90c5db0c3fd8</CustomerId> <End>2026-04-12T13:30:50.6170376+02:00</End> <ResourceId>5</ResourceId> <ResourceType>Nessuno</ResourceType> <ShopId>f12a8203-40f5-4f07-b83e-37c1a4804a54</ShopId> <Start>2026-04-12T13:30:50.6170376+02:00</Start> <Text>sample string 4</Text> </BookingInsertMemoRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
AjaxBaseResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ExitCode | ExitCodes |
None. |
|
| Message | string |
None. |
|
| Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"ExitCode": 0,
"Message": "sample string 1",
"Data": {}
}
application/xml, text/xml
Sample:
<AjaxBaseResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Area.API.Data"> <Data /> <ExitCode>Ok</ExitCode> <Message>sample string 1</Message> </AjaxBaseResponse>