POST api/Customer/GetCustomerProfileForTokenService
Request Information
URI Parameters
None.
Body Parameters
GetCustomerProfileForTokenServiceRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerId": "56c8e5cb-4cd3-4900-b4aa-c8f40530ea02"
}
application/xml, text/xml
Sample:
<GetCustomerProfileForTokenServiceRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request"> <CustomerId>56c8e5cb-4cd3-4900-b4aa-c8f40530ea02</CustomerId> </GetCustomerProfileForTokenServiceRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetCustomerProfileForTokenServiceResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| string |
None. |
||
| Gender | integer |
None. |
|
| MigrationFlag | integer |
None. |
|
| IsLazyRegistration | integer |
None. |
|
| PartnerTypeCode | integer |
None. |
|
| SharedDataPermission | boolean |
None. |
|
| IsCanceled | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"FirstName": "sample string 1",
"LastName": "sample string 2",
"Email": "sample string 3",
"Gender": 1,
"MigrationFlag": 4,
"IsLazyRegistration": 5,
"PartnerTypeCode": 6,
"SharedDataPermission": true,
"IsCanceled": true
}
application/xml, text/xml
Sample:
<GetCustomerProfileForTokenServiceResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response"> <Email>sample string 3</Email> <FirstName>sample string 1</FirstName> <Gender>1</Gender> <IsCanceled>true</IsCanceled> <IsLazyRegistration>5</IsLazyRegistration> <LastName>sample string 2</LastName> <MigrationFlag>4</MigrationFlag> <PartnerTypeCode>6</PartnerTypeCode> <SharedDataPermission>true</SharedDataPermission> </GetCustomerProfileForTokenServiceResponse>