Skip to content

DeleteTextsRequest

Example Usage

typescript
import { DeleteTextsRequest } from "@meetkai/mka1/models/operations";

let value: DeleteTextsRequest = {
  storeName: "<value>",
  xApiKeyId: "<id>",
  xUserId: "<id>",
  xExchangeJwtExternalUserId: "<id>",
  deleteTextsRequest: {
    texts: [
      "USB-C charging cable with braided nylon sleeve",
    ],
    groups: [
      "electronics_q1_2026",
    ],
  },
};

Fields

FieldTypeRequiredDescriptionExample
storeNamestring✔️N/A
xApiKeyIdstring✔️N/A
xUserIdstring✔️N/A
xExchangeJwtExternalUserIdstring✔️N/A
deleteTextsRequestcomponents.DeleteTextsRequest✔️N/A{
"groups": [
"electronics_q1_2026"
],
"texts": [
"USB-C charging cable with braided nylon sleeve"
]
}