GET Subscriber/{subscriberId}/Consumer/{consumerId}/Carts/Identifiers
Finds current cart identifiers for a consumer. They are ordered by most recent first.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
consumerId | integer |
Required |
|
subscriberId | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of SubscriberActiveCartIdentifierName | Description | Type | Additional information |
---|---|---|---|
CartId | globally unique identifier |
None. |
|
ConsumerId | integer |
None. |
|
StaffId | integer |
None. |
|
LocationId | integer |
None. |
|
LastModified | date |
None. |
Response Formats
application/json, text/json
Sample:
[ { "CartId": "fe5b8a24-de3a-4dfc-9a18-5e3259043834", "ConsumerId": 2, "StaffId": 3, "LocationId": 4, "LastModified": "2025-04-07T06:36:57.386775-07:00" }, { "CartId": "fe5b8a24-de3a-4dfc-9a18-5e3259043834", "ConsumerId": 2, "StaffId": 3, "LocationId": 4, "LastModified": "2025-04-07T06:36:57.386775-07:00" } ]
application/xml, text/xml
Sample:
<ArrayOfSubscriberActiveCartIdentifier xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mindbody.Contract.Marketplace.Models.Carts"> <SubscriberActiveCartIdentifier> <CartId>fe5b8a24-de3a-4dfc-9a18-5e3259043834</CartId> <ConsumerId>2</ConsumerId> <LastModified>2025-04-07T06:36:57.386775-07:00</LastModified> <LocationId>4</LocationId> <StaffId>3</StaffId> </SubscriberActiveCartIdentifier> <SubscriberActiveCartIdentifier> <CartId>fe5b8a24-de3a-4dfc-9a18-5e3259043834</CartId> <ConsumerId>2</ConsumerId> <LastModified>2025-04-07T06:36:57.386775-07:00</LastModified> <LocationId>4</LocationId> <StaffId>3</StaffId> </SubscriberActiveCartIdentifier> </ArrayOfSubscriberActiveCartIdentifier>