POST api/Customer/GetCustomerProfileForCart

Request Information

URI Parameters

None.

Body Parameters

GetCustomerProfileForCartRequest
NameDescriptionTypeAdditional information
UserId

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": "5b2301ce-d956-45a2-a79a-a66b33cd6a65"
}

application/xml, text/xml

Sample:
<GetCustomerProfileForCartRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request">
  <UserId>5b2301ce-d956-45a2-a79a-a66b33cd6a65</UserId>
</GetCustomerProfileForCartRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

GetCustomerProfileForCartResponse
NameDescriptionTypeAdditional information
UserId

globally unique identifier

None.

Email

string

None.

GsmNumber

string

None.

IsCorporateAccount

boolean

None.

Name

string

None.

SurName

string

None.

PhoneNumber

string

None.

Pref5

string

None.

GroupId

string

None.

IsLazyRegistration

integer

None.

CreatedDateTime

date

None.

Response Formats

application/json, text/json

Sample:
{
  "UserId": "503a7394-fcc9-4ef3-ba5a-020c99955050",
  "Email": "sample string 2",
  "GsmNumber": "sample string 3",
  "IsCorporateAccount": true,
  "Name": "sample string 5",
  "SurName": "sample string 6",
  "PhoneNumber": "sample string 7",
  "Pref5": "sample string 8",
  "GroupId": "sample string 9",
  "IsLazyRegistration": 1,
  "CreatedDateTime": "2025-05-23T23:01:10.8854316+03:00"
}

application/xml, text/xml

Sample:
<GetCustomerProfileForCartResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response">
  <CreatedDateTime>2025-05-23T23:01:10.8854316+03:00</CreatedDateTime>
  <Email>sample string 2</Email>
  <GroupId>sample string 9</GroupId>
  <GsmNumber>sample string 3</GsmNumber>
  <IsCorporateAccount>true</IsCorporateAccount>
  <IsLazyRegistration>1</IsLazyRegistration>
  <Name>sample string 5</Name>
  <PhoneNumber>sample string 7</PhoneNumber>
  <Pref5>sample string 8</Pref5>
  <SurName>sample string 6</SurName>
  <UserId>503a7394-fcc9-4ef3-ba5a-020c99955050</UserId>
</GetCustomerProfileForCartResponse>