POST Authentication/Register
Request Information
URI Parameters
None.
Body Parameters
Register| Name | Description | Type | Additional information |
|---|---|---|---|
| Name | string |
None. |
|
| Country | string |
None. |
|
| DialCode | string |
None. |
|
| Phone | string |
None. |
|
| string |
None. |
||
| BirthDate | date |
None. |
|
| Password | string |
None. |
|
| Gender | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Name": "sample string 1",
"Country": "sample string 2",
"DialCode": "sample string 3",
"Phone": "sample string 4",
"Mail": "sample string 5",
"BirthDate": "2026-01-22T13:44:40.9808207+03:00",
"Password": "sample string 7",
"Gender": 8
}
application/xml, text/xml
Sample:
<Register xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ChargeCloudAPI.Models"> <BirthDate>2026-01-22T13:44:40.9808207+03:00</BirthDate> <Country>sample string 2</Country> <DialCode>sample string 3</DialCode> <Gender>8</Gender> <Mail>sample string 5</Mail> <Name>sample string 1</Name> <Password>sample string 7</Password> <Phone>sample string 4</Phone> </Register>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
RegisterResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | string |
None. |
|
| Name | string |
None. |
|
| ResponseCode | string |
None. |
|
| Success | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": "sample string 1",
"Name": "sample string 2",
"ResponseCode": "sample string 3",
"Success": true
}
application/xml, text/xml
Sample:
<RegisterResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ChargeCloudAPI.Models"> <ID>sample string 1</ID> <Name>sample string 2</Name> <ResponseCode>sample string 3</ResponseCode> <Success>true</Success> </RegisterResponse>