GiftMessageCart
GiftMessageCart is an auto generated table. The supported operations are Insert, and Querying data from this table.
Table Specific Information
Select
The add-in uses the AdobeCommerce API to filter the results by CartId while the rest of the filter is executed client side within the add-in.
You must specify the CartId column in the WHERE clause to retrieve results from GiftMessageCart. CartId can be used only with the equals (=) operator.
For example:
SELECT * FROM [GiftMessageCart] WHERE CartId = '123'
Insert
To create a new gift message, the CartId, Message, Recipient and Sender columns are required.
INSERT INTO GiftMessageCart (Message, Recipient, Sender, CartId) VALUES ('sample', 'recipient name', 'sender name', '12')
Columns
| Name | Type | ReadOnly | Description |
| CustomerId | Int | False |
Customer ID. Otherwise, null. |
| CartId | String | False |
cartId |
| ExtensionAttributes | String | False |
This is an auto-generated column |
| GiftMessageId [KEY] | Int | False |
Gift message ID. Otherwise, null. |
| Message | String | False |
Message text. |
| Recipient | String | False |
Recipient name. |
| Sender | String | False |
Sender name. |