POST api/Customer/Registration/3/ProfileInfo?Signature={Signature}&Language={Language}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Signature

string

Required

Language

API.LANGUAGE

Default value is en_US

Body Parameters

Requests.Customers.Registrations.ProfileInfo
NameDescriptionTypeAdditional information
ClientCode

string

None.

DateTime

date

None.

Content

Forms.Customers.Registrations.ProfileInfo

None.

Request Formats

application/json, text/json

Sample:
{
  "ClientCode": "sample string 1",
  "DateTime": "2024-11-18T12:26:57.5129236+08:00",
  "Content": {
    "CustomerRegistrationID": 1,
    "Username": "sample string 2",
    "Password": "sample string 3",
    "FirstName": "sample string 4",
    "LastName": "sample string 5",
    "NickName": "sample string 6",
    "GenderID": 64,
    "DateOfBirth": "2024-11-18T12:26:57.5129236+08:00"
  }
}

text/html

Sample:
{"ClientCode":"sample string 1","DateTime":"2024-11-18T12:26:57.5129236+08:00","Content":{"CustomerRegistrationID":1,"Username":"sample string 2","Password":"sample string 3","FirstName":"sample string 4","LastName":"sample string 5","NickName":"sample string 6","GenderID":64,"DateOfBirth":"2024-11-18T12:26:57.5129236+08:00"}}

application/xml, text/xml

Sample:
<ProfileInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CBSS_API.App_Code.Requests.Customers.Registrations">
  <ClientCode xmlns="http://schemas.datacontract.org/2004/07/CBSS_API.App_Code">sample string 1</ClientCode>
  <Content xmlns:d2p1="http://schemas.datacontract.org/2004/07/CBSS_API.Forms.Customers.Registrations" xmlns="http://schemas.datacontract.org/2004/07/CBSS_API.App_Code">
    <d2p1:CustomerRegistrationID>1</d2p1:CustomerRegistrationID>
    <d2p1:DateOfBirth>2024-11-18T12:26:57.5129236+08:00</d2p1:DateOfBirth>
    <d2p1:FirstName>sample string 4</d2p1:FirstName>
    <d2p1:GenderID>64</d2p1:GenderID>
    <d2p1:LastName>sample string 5</d2p1:LastName>
    <d2p1:NickName>sample string 6</d2p1:NickName>
    <d2p1:Password>sample string 3</d2p1:Password>
    <d2p1:Username>sample string 2</d2p1:Username>
  </Content>
  <DateTime xmlns="http://schemas.datacontract.org/2004/07/CBSS_API.App_Code">2024-11-18T12:26:57.5129236+08:00</DateTime>
</ProfileInfo>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Responses.Customers.Registrations.ProfileInfo
NameDescriptionTypeAdditional information
IsSuccessful

boolean

None.

Messages

Collection of Models.Message

None.

ClientCode

string

None.

DateTime

date

None.

Content

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "IsSuccessful": true,
  "Messages": [],
  "ClientCode": "sample string 2",
  "DateTime": "2024-11-18T12:26:57.5441769+08:00",
  "Content": {}
}

text/html

Sample:
{"IsSuccessful":true,"Messages":[],"ClientCode":"sample string 2","DateTime":"2024-11-18T12:26:57.5441769+08:00","Content":{}}

application/xml, text/xml

Sample:
<ProfileInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CBSS_API.App_Code.Responses.Customers.Registrations">
  <ClientCode xmlns="http://schemas.datacontract.org/2004/07/CBSS_API.App_Code">sample string 2</ClientCode>
  <Content xmlns="http://schemas.datacontract.org/2004/07/CBSS_API.App_Code" />
  <DateTime xmlns="http://schemas.datacontract.org/2004/07/CBSS_API.App_Code">2024-11-18T12:26:57.5441769+08:00</DateTime>
  <IsSuccessful xmlns="http://schemas.datacontract.org/2004/07/CBSS_API.App_Code.Responses">true</IsSuccessful>
</ProfileInfo>