GET api/Carts?CustomerIdentiry={CustomerIdentiry}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
CustomerIdentiry

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of CartBL
NameDescriptionTypeAdditional information
RecordId

integer

None.

CartId

string

None.

ProductId

integer

None.

Count

integer

None.

DateCreated

date

None.

IsNeedsToDelete

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "RecordId": 1,
    "CartId": "sample string 2",
    "ProductId": 3,
    "Count": 4,
    "DateCreated": "2026-08-22T11:07:20.1398995-07:00",
    "IsNeedsToDelete": true
  },
  {
    "RecordId": 1,
    "CartId": "sample string 2",
    "ProductId": 3,
    "Count": 4,
    "DateCreated": "2026-08-22T11:07:20.1398995-07:00",
    "IsNeedsToDelete": true
  }
]